Emil Christensen
Emil Christensen
### Bug summary When a flow run fails at runtime due to a parameter validation error, the defined `on_failure` hook is not called. This can be confusing to users as...
### Bug summary The `tags` on a `deployments` item in `prefect.yaml` doesn't resolve step outputs (e.g. `{{ get-branch-name.stdout }}`). It does resolve environment variables (e.g. `{{ $FOO }}`) and step...
### Bug summary Task timeouts do not appear to actually be enforced. A `TimeoutError` is eventually raised but not when it's supposed to be. The [docs](https://docs-2.prefect.io/latest/concepts/tasks/#timeouts) contain the following example:...
### Bug summary When trying to define headers for a `CustomWebhookNotificationBlock` in the UI, the field is not editable (first image). This is the same for query params, cookies, form...
Closes #15647 This PR wraps each of the `run_dbt_` functions with `sync_compatible`. Not sure if that's a desirable fix, so open to suggestions. Currently, the functions never execute (at least...
### Bug summary 1. Create a webhook block pointing to somewhere you can see the incoming calls (I used https://webhook.site/) 2. Create an automation that triggers based on _Work pool...
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it. -...
### Describe the current behavior The Prefect client currently does not retry [`anyio.EndOfStream`](https://anyio.readthedocs.io/en/stable/api.html#anyio.EndOfStream) exceptions. As a result, when a load balancer instance is suddenly terminated, a flow run that could...
The ECS Worker Guide instructs users to assign the `arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy` policy to their worker ECSTask, but this role is insufficient for actually starting flow runs ECSTasks. The role should include...
[This](https://docs.prefect.io/v3/deploy/infrastructure-concepts/prefect-yaml#concurrency-limit-fields) concurrency limit fields section of the docs suggests that the deployment YAML has the following structure: ```yaml deployments: ... concurrency_limit: limit: collision_strategy: ``` When in fact it has the...