aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
authorHaakon Dybdahl <dybdahl@yahoo-inc.com>2016-11-02 09:48:27 +0100
committerHaakon Dybdahl <dybdahl@yahoo-inc.com>2016-11-02 09:48:27 +0100
commit660704ec1025b775d7bb12592c1d00db5e94b04c (patch)
treef5610d98a0b3e13b0ef5cb4d8efce096ff8ef053 /vespa-http-client
parent57b6439da5a4b54c9392c40fb6bd2ddcd9e80026 (diff)
Improve log messages.
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ApacheGatewayConnection.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ApacheGatewayConnection.java b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ApacheGatewayConnection.java
index 9d30a62ea32..33a1a65da95 100644
--- a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ApacheGatewayConnection.java
+++ b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/ApacheGatewayConnection.java
@@ -283,8 +283,8 @@ class ApacheGatewayConnection implements GatewayConnection {
return;
} else {
if (!sessionId.equals(serverHeaderVal)) {
- log.severe("Request has been routed to a server which does not recognize the client session."
- + " Most likely causes are server restart or incompatible use of a VIP.");
+ log.info("Request has been routed to a server which does not recognize the client session."
+ + " Most likely cause is upgrading of cluster, transitive error.");
throw new ServerResponseException(
"Session ID received from server ('" + serverHeaderVal
+ "') does not match cached session ID ('" + sessionId + "')");