Satsuki Nagae
04/05/2023, 8:35 AMstatus_code
of the ECSTaskResult
?
from prefect_aws.ecs import ECSTask
ecs_task_block = ECSTask.load("my-ecs-task-block")
ecs_task_result = ecs_task_block.run()
print(ecs_task_result.exit_code) # 1 (application error)
Samuel Hinton
04/05/2023, 8:37 AMSatsuki Nagae
04/06/2023, 1:30 AMthe logs go to stdout so you cant analyse the stacks with codeHmm, it seems difficult to solve my problem. I hope for a future feature that can detect errors. Thank you for your kind response.