summaryrefslogtreecommitdiffstats
path: root/container-search
diff options
context:
space:
mode:
authorOlli Virtanen <olli.virtanen@oath.com>2019-03-22 10:21:39 +0100
committerOlli Virtanen <olli.virtanen@oath.com>2019-03-22 10:21:39 +0100
commit6dfb40ef0c91120c0e2db1d2315fbb622eff2a2f (patch)
tree77011a79e4b1bcacd0ace961ea91b96b0117aea2 /container-search
parent37bf79fdedacad3b46796667e29d86a302f98fc0 (diff)
Change trace level of network errors
Diffstat (limited to 'container-search')
-rw-r--r--container-search/src/main/java/com/yahoo/search/dispatch/InterleavedSearchInvoker.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/dispatch/InterleavedSearchInvoker.java b/container-search/src/main/java/com/yahoo/search/dispatch/InterleavedSearchInvoker.java
index 927eeb9749a..b8c9bb205e9 100644
--- a/container-search/src/main/java/com/yahoo/search/dispatch/InterleavedSearchInvoker.java
+++ b/container-search/src/main/java/com/yahoo/search/dispatch/InterleavedSearchInvoker.java
@@ -148,7 +148,7 @@ public class InterleavedSearchInvoker extends SearchInvoker implements ResponseM
result.hits().addError(ErrorMessage
.createTimeout("Backend communication timeout on all nodes in group (distribution-keys: " + keys + ")"));
} else {
- query.trace("Backend communication timeout on nodes with distribution-keys: " + keys, 5);
+ query.trace("Backend communication timeout on nodes with distribution-keys: " + keys, 2);
}
timedOut = true;
}
@@ -158,7 +158,7 @@ public class InterleavedSearchInvoker extends SearchInvoker implements ResponseM
if (asErrors) {
result.hits().addError(ErrorMessage.createBackendCommunicationError(message));
} else {
- query.trace(message, 5);
+ query.trace(message, 2);
}
int failed = alreadyFailedNodes.size();
askedNodes += failed;