summaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-11-28 16:52:11 +0200
committerJon Bratseth <bratseth@verizonmedia.com>2019-11-28 16:52:11 +0200
commit2fc7ea4c6f643b30126e94175a89e54008fa9e63 (patch)
tree7e57ce5eee2e9e8df64acc76ca7552e51a2a4ccf /vespa-http-client
parentc9fa491d585b0220ebb1b09be522d60a7aa20b72 (diff)
Better error message on missing field
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/operationProcessor/DocumentSendInfo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/operationProcessor/DocumentSendInfo.java b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/operationProcessor/DocumentSendInfo.java
index 0952837ecc4..883cea7e6f0 100644
--- a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/operationProcessor/DocumentSendInfo.java
+++ b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/operationProcessor/DocumentSendInfo.java
@@ -9,7 +9,7 @@ import java.util.Map;
/**
* Keeps an overview of what is sent and what is received for an operation.
- * This class is NOT thread-safe.
+ * This class is not thread-safe.
*/
class DocumentSendInfo {
@@ -30,7 +30,7 @@ class DocumentSendInfo {
if (detailByClusterId.containsKey(clusterId)) {
if (localTrace != null) {
localTrace.append(System.currentTimeMillis() + " Got duplicate detail, ignoring this: "
- + detail.toString() + "\n");
+ + detail.toString() + "\n");
}
return false;
}