You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JavaNetSslTlsBucketConfig.handshakeTimeout() introduced recently returns Duration.parse("10S") which throws the named exception. It should return some equivalent of 10 seconds, something like Duration.ofSeconds(10L). A fix and test follows.