// handleUnrecognizedTask handles unrecognized tasks by sending 'stopped' with // a suitable reason to the backend func (payloadHandler *payloadRequestHandler) handleUnrecognizedTask(task *ecsacs.Task, err error, payload *ecsacs.PayloadMessage) { if task.Arn == nil { seelog.Criticalf("Recieved task with no arn, messageId: %s, task: %v", *payload.MessageId, task) return } // Only need to stop the task; it brings down the containers too. eventhandler.AddTaskEvent(api.TaskStateChange{ TaskArn: *task.Arn, Status: api.TaskStopped, Reason: UnrecognizedTaskError{err}.Error(), }, payloadHandler.ecsClient) }
// handleUnrecognizedTask handles unrecognized tasks by sending 'stopped' with // a suitable reason to the backend func handleUnrecognizedTask(client api.ECSClient, cluster, containerInstanceArn string, task *ecsacs.Task, err error, payload *ecsacs.PayloadMessage) { if task.Arn == nil { log.Crit("Recieved task with no arn", "task", task, "messageId", *payload.MessageId) return } // Only need to stop the task; it brings down the containers too. eventhandler.AddTaskEvent(api.TaskStateChange{ TaskArn: *task.Arn, Status: api.TaskStopped, Reason: UnrecognizedTaskError{err}.Error(), }, client) }