-
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
Assorted @WithTestResource fixes #45253
Conversation
Otherwise we were comparing items with and without this entry, leading to us restarting Quarkus a lot more often than necessary. Spotted while playing with a modified version of @WithKubernetesTestServer/
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.
Thanks a lot!
🙈 The PR is closed and the preview is expired. |
Status for workflow
|
Status for workflow
|
The first two commit are just some doc fixes and a typo fix... but the third one is actually a real bug fix.
When determining if Quarkus should be restarted or not in a test, we were comparing items in which we were injecting an additional
configAnnotation
entry with items for which we didn't. Which led to some unnecessary restarts.I stumbled upon this while working on a modified version of
@WithKubernetesTestServer
which was not restricted to class.