summaryrefslogtreecommitdiffstats
path: root/storage/src
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-10-07 17:28:16 +0200
committerJon Bratseth <bratseth@gmail.com>2021-10-07 17:28:16 +0200
commitc458806ad128962c8369962ec198500ed8b9c8fb (patch)
tree6687b2fd464b63f53278d62ef22d564cbd631d6d /storage/src
parent6cd3e5387169803041c5628178181ee15e7b929c (diff)
Hint about NTP
Diffstat (limited to 'storage/src')
-rw-r--r--storage/src/vespa/storage/storageserver/bouncer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/storageserver/bouncer.cpp b/storage/src/vespa/storage/storageserver/bouncer.cpp
index d3c0fb83212..ea14a1b7492 100644
--- a/storage/src/vespa/storage/storageserver/bouncer.cpp
+++ b/storage/src/vespa/storage/storageserver/bouncer.cpp
@@ -132,7 +132,7 @@ Bouncer::rejectCommandWithTooHighClockSkew(api::StorageMessage& msg,
auto& as_cmd = dynamic_cast<api::StorageCommand&>(msg);
std::ostringstream ost;
ost << "Message " << msg.getType() << " is more than "
- << maxClockSkewInSeconds << " seconds in the future";
+ << maxClockSkewInSeconds << " seconds in the future, set up NTP.";
append_node_identity(ost);
LOGBP(warning, "Rejecting operation from distributor %u: %s",
as_cmd.getSourceIndex(), ost.str().c_str());