-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
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
Allow configuring the RestAssured timeouts and provide sensible defaults. #12127
Allow configuring the RestAssured timeouts and provide sensible defaults. #12127
Conversation
CC @galderz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we add something like:
quarkus/core/runtime/src/main/java/io/quarkus/runtime/CommandLineRuntimeConfig.java
Line 10 in 23e1543
* This configuration class is here to avoid warnings when using {@code -Dquarkus.args=...}. |
To avoid warnings when quarkus.http.test-timeout
is used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a small suggestion for the doc.
a1b1f49
to
81ab45a
Compare
Thanks @gsmet, merged, and rebased. |
Thx @cescoffier! 👍 |
Fix #11769.
At the moment, we do not configure the RestAssured timeout. As a consequence, tests can wait up to 45 minutes before failing.
This PR configures the timeout to 30 seconds and provides a way to the user to configure them from the application properties.