Update fdbserver/DataDistribution.actor.cpp

Co-Authored-By: A.J. Beamon <ajbeamon@users.noreply.github.com>
This commit is contained in:
Meng Xu 2019-09-18 14:45:18 -07:00 committed by GitHub
parent d175b61a62
commit 515689d07b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3615,7 +3615,7 @@ ACTOR Future<Void> checkAndRemoveInvalidLocalityAddr(DDTeamCollection* self) {
if (!existingAddrs.count(*addr)) {
// The address no longer has a worker
addr = self->invalidLocalityAddr.erase(addr);
TraceEvent("InvalidLocalityNoLongerExisted").detail("Addr", addr->toString());
TraceEvent("InvalidLocalityNoLongerExists").detail("Addr", addr->toString());
} else {
++addr;
}