You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to run a migration task prior to ECS service update as mentioned here, the 1-off migration task exits successfully, but the subsequent service update is not triggered, eventually causing the job to fail after timeout of 20 minutes.
In my case, the service was not being created because it was hanging waiting for the migrations to finish. The migrations were already finished, but the process was blocked there waiting them to finish.
After debugging, in my case it was an insufficient permissions problem.
In order to wait to the migrations to STOP it needs the ecs::DescribeTasks permissions. Once I added that permission the process can see migrations being finished and therefore deploys the service
When trying to run a migration task prior to ECS service update as mentioned here, the 1-off migration task exits successfully, but the subsequent service update is not triggered, eventually causing the job to fail after timeout of 20 minutes.
Here is the relevant config in workflow file
The text was updated successfully, but these errors were encountered: