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
The schema validation is not preventing the use of an invalid until property in the retry configuration.
until
retry
retry: count: 3 wait: 10000 until: - path: payload.state equal: COMPLETED
No error is thrown, despite until not being a valid property in the retry schema.
The schema validation should reject the configuration and throw an error, indicating that until is not a valid property in the retry configuration.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What is the bug?
The schema validation is not preventing the use of an invalid
until
property in theretry
configuration.How can one reproduce the bug?
No error is thrown, despite
until
not being a valid property in theretry
schema.What is the expected behavior?
The schema validation should reject the configuration and throw an error, indicating that
until
is not a valid property in theretry
configuration.The text was updated successfully, but these errors were encountered: