Skip to content

Commit a598302

Browse files
committed
Wait longer before invalidating the session.
We could debate the exact timeout here, but for any command that can cause a page load, it definitely needs to be at least as long as the session's page load timeout.
1 parent 0bb8a9b commit a598302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/server/src/org/openqa/selenium/remote/server/WebDriverServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ private void handle(HttpServletRequest req, HttpServletResponse resp) {
203203
});
204204

205205
try {
206-
execution.get(1, MINUTES);
206+
execution.get(10, MINUTES);
207207
} catch (ExecutionException e) {
208208
resp.reset();
209209
new ExceptionHandler(e).execute(

0 commit comments

Comments
 (0)