Michael Blow has submitted this change and it was merged. Change subject: Disable Connection Keep-Alive from Client Helper ......................................................................
Disable Connection Keep-Alive from Client Helper On windows, client helper connections are terminated in a matter which yields ugly exceptions on the server (java.io.IOException: An existing connection was forcibly closed by the remote host). Disabling keep-alive on the client helper connections elminates the exceptions Change-Id: I45aeed8a77a1853e2c54a6fff47d941da5ad8413 Reviewed-on: https://asterix-gerrit.ics.uci.edu/1639 Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> BAD: Jenkins <[email protected]> Reviewed-by: Till Westmann <[email protected]> --- M asterixdb/asterix-client-helper/src/main/java/org/apache/asterix/clienthelper/commands/RemoteCommand.java 1 file changed, 1 insertion(+), 0 deletions(-) Approvals: Till Westmann: Looks good to me, approved Jenkins: Verified; No violations found; No violations found diff --git a/asterixdb/asterix-client-helper/src/main/java/org/apache/asterix/clienthelper/commands/RemoteCommand.java b/asterixdb/asterix-client-helper/src/main/java/org/apache/asterix/clienthelper/commands/RemoteCommand.java index e7b6be3..6a16761 100644 --- a/asterixdb/asterix-client-helper/src/main/java/org/apache/asterix/clienthelper/commands/RemoteCommand.java +++ b/asterixdb/asterix-client-helper/src/main/java/org/apache/asterix/clienthelper/commands/RemoteCommand.java @@ -73,6 +73,7 @@ conn.setConnectTimeout(timeoutMillis); conn.setReadTimeout(timeoutMillis); conn.setRequestMethod(method.name()); + conn.setRequestProperty("Connection", "close"); return conn; } } -- To view, visit https://asterix-gerrit.ics.uci.edu/1639 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: I45aeed8a77a1853e2c54a6fff47d941da5ad8413 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Michael Blow <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Michael Blow <[email protected]> Gerrit-Reviewer: Till Westmann <[email protected]>
