mirror of https://github.com/apache/druid.git
Fix incorrect ordering of args in log statement (#15846)
This commit is contained in:
parent
1affa35b29
commit
4c58856f10
|
@ -709,8 +709,8 @@ public class HttpRemoteTaskRunner implements WorkerTaskRunner, TaskLogStreamer
|
||||||
if (!taskItem.getResult().isDone()) {
|
if (!taskItem.getResult().isDone()) {
|
||||||
log.warn(
|
log.warn(
|
||||||
"Failing task[%s] because worker[%s] disappeared and did not report within cleanup timeout[%s].",
|
"Failing task[%s] because worker[%s] disappeared and did not report within cleanup timeout[%s].",
|
||||||
workerHostAndPort,
|
|
||||||
taskItem.getTaskId(),
|
taskItem.getTaskId(),
|
||||||
|
workerHostAndPort,
|
||||||
config.getTaskCleanupTimeout()
|
config.getTaskCleanupTimeout()
|
||||||
);
|
);
|
||||||
// taskComplete(..) must be called outside of statusLock, see comments on method.
|
// taskComplete(..) must be called outside of statusLock, see comments on method.
|
||||||
|
|
Loading…
Reference in New Issue