aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-11-18 20:49:39 +0100
committerJon Marius Venstad <venstad@gmail.com>2021-11-18 20:49:39 +0100
commit5ed9e9551678fcf43481f1a8a52960c0b50bf51e (patch)
tree621c162205cca504a39474fdda9beb24f158bfc7 /vespa-http-client
parent0654fa7787092a5f101572629c11860f5480e058 (diff)
Duplicate results are expected when client fails to observe operations accepted
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/EndpointResultQueue.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/EndpointResultQueue.java b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/EndpointResultQueue.java
index c877daeeb2a..98b6aee1e33 100644
--- a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/EndpointResultQueue.java
+++ b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/EndpointResultQueue.java
@@ -67,10 +67,10 @@ class EndpointResultQueue {
InflightOperation operation = inflightOperations.remove(result.getOperationId());
if (operation == null) {
if (duplicateGivesWarning) {
- log.warning("Result for ID '" + result.getOperationId() + "' received from '" + endpoint +
- "', but we have no record of a sent operation. Either something is wrong on the server side " +
- "(bad VIP usage?), or we have somehow received duplicate results, " +
- "or operation was received _after_ client-side timeout.");
+ log.info("Result for ID '" + result.getOperationId() + "' received from '" + endpoint +
+ "', but we have no record of a sent operation. This may happen if an operation is " +
+ "initiated, but also retried, due to HTTP failure. Otherwise, something is wrong on " +
+ "the server side (bad VIP usage?), or operation was received _after_ client-side timeout.");
}
return;
}