summaryrefslogtreecommitdiffstats
path: root/searchcore/src
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-04-21 12:27:34 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-04-21 12:27:34 +0000
commit4eb90f5949c67dc53b363759917655b7b3402110 (patch)
tree997e6ac663d966502eead7fe35a58644f3cdbfec /searchcore/src
parent1879247abe07955356bbdce3672e7f90ad7e0245 (diff)
Adjust log message when delaying attribute aspect changes.
Diffstat (limited to 'searchcore/src')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/documentdb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/documentdb.cpp b/searchcore/src/vespa/searchcore/proton/server/documentdb.cpp
index a252888e351..0a02d00980e 100644
--- a/searchcore/src/vespa/searchcore/proton/server/documentdb.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/documentdb.cpp
@@ -432,7 +432,7 @@ DocumentDB::applyConfig(DocumentDBConfig::SP configSnapshot,
}
if (configSnapshot->getDelayedAttributeAspects()) {
_state.setConfigState(DDBState::ConfigState::NEED_RESTART);
- LOG(info, "DocumentDB(%s): Config from config server rejected: need restart",
+ LOG(info, "DocumentDB(%s): Delaying attribute aspect changes: need restart",
_docTypeName.toString().c_str());
}
cmpres = _activeConfigSnapshot->compare(*configSnapshot);
@@ -488,7 +488,7 @@ DocumentDB::applyConfig(DocumentDBConfig::SP configSnapshot,
}
if (!configSnapshot->getDelayedAttributeAspects()) {
if (_state.getRejectedConfig()) {
- LOG(info, "DocumentDB(%s): Rejected config replaced with new config",
+ LOG(info, "DocumentDB(%s): Stopped delaying attribute aspect changes",
_docTypeName.toString().c_str());
}
_state.clearRejectedConfig();