TaskQueue: Exception during isReady does not warrant an alert.

This commit is contained in:
Gian Merlino 2013-12-13 00:38:20 -08:00
parent 6227963af9
commit 863012c384
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}