Skip to content

Commit

Permalink
HIVE-28246: Fix confusing log message in LlapTaskSchedulerService (#5238
Browse files Browse the repository at this point in the history
). (Zoltan Ratkai, reviewed by Ayush Saxena, Attila Turoczy)
  • Loading branch information
zratkai committed May 22, 2024
1 parent 18c434f commit 9e8f418
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1716,7 +1716,7 @@ protected void registerRunningTask(TaskInfo taskInfo) {
isGuaranteed ? guaranteedTasks : speculativeTasks;
writeLock.lock();
try {
WM_LOG.info("Registering " + taskInfo.attemptId + "; " + taskInfo.isGuaranteed);
WM_LOG.info("Registering {}, guaranteed: {}", taskInfo.attemptId, taskInfo.isGuaranteed);
addToRunningTasksMap(runningTasks, taskInfo);
if (metrics != null) {
metrics.decrPendingTasksCount();
Expand Down

0 comments on commit 9e8f418

Please sign in to comment.