Fix some typos in the CommitDebug tags.
s/ApplyMetada/ApplyMetadata/ is not a big deal, but might as well spell it right. The two identical ApplyMetaDaEffect entries were a little trickier to pick apart in the logs, when otherwise grouping CommitDebug entries by ID.
This commit is contained in:
parent
d47a2ab60f
commit
e34c97fe00
|
@ -1661,13 +1661,15 @@ ACTOR Future<Void> postResolution(CommitBatchContext* self) {
|
|||
applyMetadataEffect(self);
|
||||
|
||||
if (debugID.present()) {
|
||||
g_traceBatch.addEvent("CommitDebug", debugID.get().first(), "CommitProxyServer.commitBatch.ApplyMetadaEffect");
|
||||
g_traceBatch.addEvent(
|
||||
"CommitDebug", debugID.get().first(), "CommitProxyServer.commitBatch.ApplyMetadataEffect");
|
||||
}
|
||||
|
||||
determineCommittedTransactions(self);
|
||||
|
||||
if (debugID.present()) {
|
||||
g_traceBatch.addEvent("CommitDebug", debugID.get().first(), "CommitProxyServer.commitBatch.ApplyMetadaEffect");
|
||||
g_traceBatch.addEvent(
|
||||
"CommitDebug", debugID.get().first(), "CommitProxyServer.commitBatch.DetermineCommittedTransactions");
|
||||
}
|
||||
|
||||
if (self->forceRecovery) {
|
||||
|
@ -1679,7 +1681,7 @@ ACTOR Future<Void> postResolution(CommitBatchContext* self) {
|
|||
|
||||
if (debugID.present()) {
|
||||
g_traceBatch.addEvent(
|
||||
"CommitDebug", debugID.get().first(), "CommitProxyServer.commitBatch.ApplyMetadaToCommittedTxn");
|
||||
"CommitDebug", debugID.get().first(), "CommitProxyServer.commitBatch.ApplyMetadataToCommittedTxn");
|
||||
}
|
||||
|
||||
// Second pass
|
||||
|
|
Loading…
Reference in New Issue