Use Time instead of Timestamp.

This commit is contained in:
Yao Xiao 2021-08-18 11:46:57 -07:00
parent 977f8f494e
commit 4b8dadfdfb
1 changed files with 1 additions and 1 deletions

View File

@ -3957,7 +3957,7 @@ ACTOR Future<Void> timeKeeper(ClusterControllerData* self) {
// how long it is taking to hear responses from each other component.
UID debugID = deterministicRandom()->randomUniqueID();
TraceEvent("TimeKeeperCommit", debugID).detail("Version", v).detail("Timestamp", currentTime).log();
TraceEvent("TimeKeeperCommit", debugID).detail("Version", v).log();
tr->debugTransaction(debugID);
}
int64_t ttl = currentTime - SERVER_KNOBS->TIME_KEEPER_DELAY * SERVER_KNOBS->TIME_KEEPER_MAX_ENTRIES;