We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pause
You cannot execute a flow named pause.
Try for example to create the following flow and execute it:
id: pause namespace: company.team tasks: - id: pause type: io.kestra.plugin.core.flow.Pause delay: PT30S - id: hello type: io.kestra.plugin.core.log.Log message: Hello World! 🚀
This is because Micronaut redirect to the pause endpoint of the ExecutionController instead of the create endpoint:
@Post(uri = "/{namespace}/{id}", consumes = MediaType.MULTIPART_FORM_DATA) public Publisher<ExecutionResponse> create() } @Post(uri = "/{executionId}/pause") public void pause() }
The same issue occurs for all endpoints taken an executionId and using a POST method: pause, resume, kill, unqueue, ...
To fix that we can either:
{executionId:[^/]*}
_pause
The text was updated successfully, but these errors were encountered:
https://docs.micronaut.io/latest/guide/#routing
Sorry, something went wrong.
No branches or pull requests
Describe the issue
You cannot execute a flow named
pause
.Try for example to create the following flow and execute it:
This is because Micronaut redirect to the pause endpoint of the ExecutionController instead of the create endpoint:
The same issue occurs for all endpoints taken an executionId and using a POST method: pause, resume, kill, unqueue, ...
To fix that we can either:
{executionId:[^/]*}
_pause
so there are no possible mismatches.Environment
The text was updated successfully, but these errors were encountered: