aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-10-13 11:49:50 +0200
committerGitHub <noreply@github.com>2017-10-13 11:49:50 +0200
commit025b759b5cf0146cd0cf3f44f686eeace1b28d09 (patch)
tree2140f3e2e130c3e2d31c096c7711e53a1ad41bed /searchcore
parenteea8c949825803bc6413c42c99b2d34178a2ba6b (diff)
parent909c17c2a8a142a57d65a9c735add7ce0a6deadf (diff)
Merge pull request #3740 from vespa-engine/balder/add-format-security
Balder/add format security
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/fdispatch/search/nodemanager.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/fdispatch/search/nodemanager.cpp b/searchcore/src/vespa/searchcore/fdispatch/search/nodemanager.cpp
index fd60b16ee70..10f70b2e518 100644
--- a/searchcore/src/vespa/searchcore/fdispatch/search/nodemanager.cpp
+++ b/searchcore/src/vespa/searchcore/fdispatch/search/nodemanager.cpp
@@ -239,10 +239,11 @@ FastS_NodeManager::SetCollDesc(FastS_DataSetCollDesc *configDesc,
break;
FastOS_Thread::Sleep(100);
};
- if (allup)
+ if (allup) {
LOG(debug, "All new engines up after %d ms", rwait);
- else
+ } else {
LOG(debug, "Some new engines still down after %d ms", rwait);
+ }
}
gencnt = SetDataSetCollection(newCollection);