Rename of variables in trace event.

This commit is contained in:
Neethu Haneesha Bingi 2021-04-30 14:35:01 -07:00
parent 7a6d7cae96
commit d975e563cc
1 changed files with 3 additions and 3 deletions

View File

@ -3096,9 +3096,9 @@ ACTOR Future<Void> workerAvailabilityWatch(WorkerInterface worker,
cluster->id_worker.erase(worker.locality.processId());
cluster->updateWorkerList.set(worker.locality.processId(), Optional<ProcessData>());
TraceEvent("ClusterControllerWorkerFailed", cluster->id)
.detail("WorkerProcessId", worker.locality.processId())
.detail("WorkerProcessClass", failedWorkerInfo.details.processClass.toString())
.detail("WorkerAddress", worker.address());
.detail("ProcessId", worker.locality.processId())
.detail("ProcessClass", failedWorkerInfo.details.processClass.toString())
.detail("Address", worker.address());
return Void();
}
}