Serhii Povísenko

Results 8 comments of Serhii Povísenko

> Not sure if still bugging people, but here's my approach: > > ``` > - name: Download task definition > run: | > aws ecs describe-task-definition --task-definition api --query...

if deregistering after a new task definition was pushed, then you would want to get rid of `latest-1` revision. here is a sample of my pipeline that works and tested...

> I'm having a similar problem. Where a job earlier in the chain is skipped causes all down stream jobs to be skipped even if they don't explicitly state that...

@WillRaphaelson not sure if understood you but when I attempt to run the flow from deployment I expect to see new ECS Service to appear with Launch type FARGATE none...

@WillRaphaelson shortly speaking it crashes on `RunTask` `botocore.errorfactory.InvalidParameterException: An error occurred (InvalidParameterException) when calling the RunTask operation`

@kevingrismore I found it! Thanks here is tags ``` "tags": [ { "key": "prefect.io/flow-run-id", "value": "e35d894e-5096-4071-adf4-16bbad3dd375" }, { "key": "prefect.io/flow-run-name", "value": "lime-dragonfly" }, { "key": "prefect.io/version", "value": "2.18.1" }, {...

I'm trying to run a flow via process type work pool locally I created the pool, and here is my hello world ``` from prefect import flow, task @task def...