Skip to content

Commit

Permalink
Fix incorrect ordering of args in log statement (#15846)
Browse files Browse the repository at this point in the history
  • Loading branch information
SamWheating authored Feb 7, 2024
1 parent 1affa35 commit 4c58856
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -709,8 +709,8 @@ private void scheduleTasksCleanupForWorker(final String workerHostAndPort)
if (!taskItem.getResult().isDone()) {
log.warn(
"Failing task[%s] because worker[%s] disappeared and did not report within cleanup timeout[%s].",
workerHostAndPort,
taskItem.getTaskId(),
workerHostAndPort,
config.getTaskCleanupTimeout()
);
// taskComplete(..) must be called outside of statusLock, see comments on method.
Expand Down

0 comments on commit 4c58856

Please sign in to comment.