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 5843d4f commit f46ad2aCopy full SHA for f46ad2a
java/server/src/org/openqa/grid/web/servlet/handler/RequestHandler.java
@@ -131,6 +131,7 @@ public void process() {
131
log.log(Level.WARNING, "The client is gone for session " + session + ", terminating");
132
registry.terminate(session, SessionTerminationReason.CLIENT_GONE);
133
} catch (SocketTimeoutException e){
134
+ log.log(Level.SEVERE, "Socket timed out for session " + session + ", " + e.getMessage());
135
registry.terminate(session, SessionTerminationReason.SO_TIMEOUT);
136
} catch (Throwable t) {
137
log.log(Level.SEVERE, "cannot forward the request " + t.getMessage(), t);
0 commit comments