mirror of https://github.com/apache/druid.git
RemoteTaskRunner: Fix typo
This commit is contained in:
parent
bed263efa5
commit
05e24bd85c
|
@ -304,7 +304,7 @@ public class RemoteTaskRunner implements TaskRunner, TaskLogStreamer
|
|||
public void shutdown(final String taskId)
|
||||
{
|
||||
if (!started) {
|
||||
log.info("This TaskRunner is stopped. Ignorning shutdown command for task: %s", taskId);
|
||||
log.info("This TaskRunner is stopped. Ignoring shutdown command for task: %s", taskId);
|
||||
} else if (pendingTasks.remove(taskId) != null) {
|
||||
log.info("Removed task from pending queue: %s", taskId);
|
||||
} else if (completeTasks.containsKey(taskId)) {
|
||||
|
|
Loading…
Reference in New Issue