fixed compile error

This commit is contained in:
Evan Tschannen 2020-07-20 11:35:20 -07:00
parent be67e9cfc7
commit 220ede3564
1 changed files with 1 additions and 1 deletions

View File

@ -1626,7 +1626,7 @@ ACTOR Future<Void> masterServer( MasterInterface mi, Reference<AsyncVar<ServerDB
wait(ccInterface->onChange() || db->onChange() || ccTimeout);
if(ccTimeout.isReady()) {
TraceEvent("MasterTerminated", mi.id()).detail("Reason", "Timeout")
.detail("CCInterface", ccInterface->get().present() ? ccInterface->get().id() : UID())
.detail("CCInterface", ccInterface->get().present() ? ccInterface->get().get().id() : UID())
.detail("DBInfoInterface", db->get().clusterInterface.id());
return Void();
}