Update fdbserver/ClusterController.actor.cpp

Co-authored-by: A.J. Beamon <aj.beamon@snowflake.com>
This commit is contained in:
yao-xiao-github 2021-08-18 15:29:13 -07:00 committed by GitHub
parent 7f0a09d1e2
commit 0afb63c13f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3958,7 +3958,7 @@ ACTOR Future<Void> timeKeeper(ClusterControllerData* self) {
int64_t currentTime = (int64_t)now();
versionMap.set(tr, currentTime, v);
if (!g_network->isSimulated()) {
TraceEvent("TimeKeeperCommit", debugID).detail("Version", v).log();
TraceEvent("TimeKeeperCommit", debugID).detail("Version", v);
}
int64_t ttl = currentTime - SERVER_KNOBS->TIME_KEEPER_DELAY * SERVER_KNOBS->TIME_KEEPER_MAX_ENTRIES;
if (ttl > 0) {