kestra
kestra copied to clipboard
Odd Gantt chart after restarting an execution featuring Pause
Expected Behavior
No response
Actual Behaviour
Restarting a failed execution featuring a failing task within the io.kestra.core.tasks.flows.Pause
task makes the Gantt chart duplicate the io.kestra.core.tasks.flows.Pause
task. The task seems to be somehow stuck (doesn't fail/complete).
Steps To Reproduce
- Save the included flow
- Run the flow - it fails after 5s of being paused
- Restart the failed flow
- Check the Gantt chart
Environment Information
- Kestra Version: 0.11.0
- Operating System (OS / Docker / Kubernetes): AL2023
- Java Version (If not docker): 17
Example flow
id: pause
namespace: io.kestra.tests
tasks:
- id: hello
type: io.kestra.core.tasks.log.Log
message: Pre-pause
- id: wait-for-something
type: io.kestra.core.tasks.flows.Pause
delay: PT5S
tasks:
- id: fail-here
type: io.kestra.core.tasks.executions.Fail
- id: hello-post-pause
type: io.kestra.core.tasks.log.Log
message: Post-Pause