mirror of https://github.com/apache/druid.git
TaskQueue: Exception during isReady does not warrant an alert.
This commit is contained in:
parent
6227963af9
commit
863012c384
|
@ -238,7 +238,7 @@ public class TaskQueue
|
|||
taskIsReady = task.isReady(taskActionClientFactory.create(task));
|
||||
}
|
||||
catch (Exception e) {
|
||||
log.makeAlert(e, "Exception thrown during isReady").addData("task", task.getId()).emit();
|
||||
log.warn(e, "Exception thrown during isReady for task: %s", task.getId());
|
||||
notifyStatus(task, TaskStatus.failure(task.getId()));
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue