We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d0f05 commit 6bab9efCopy full SHA for 6bab9ef
java/src/org/openqa/selenium/grid/sessionqueue/config/NewSessionQueueOptions.java
@@ -100,7 +100,7 @@ public Duration getSessionRequestRetryInterval() {
100
// If the user sets 0 or less, we default to 1s.
101
int interval = Math.max(
102
config.getInt(SESSION_QUEUE_SECTION, "session-retry-interval")
103
- .orElse(DEFAULT_REQUEST_TIMEOUT),
+ .orElse(DEFAULT_RETRY_INTERVAL),
104
1);
105
return Duration.ofSeconds(interval);
106
}
0 commit comments