-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Document that ContextConfigurator#done() is invoked automatically #33404
Conversation
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.
I'd prefer to keep it all as a single statement, as that's how builders are typically used, but that's just a personal preference. @mkouba WDYT?
I wonder if we should just add a note to the
👍 |
🎊 PR Preview e2c3b4e has been successfully built and deployed to https://quarkus-pr-main-33404-preview.surge.sh/version/main/guides/ |
e339f68
to
dbcb143
Compare
WDYM? The
|
Right, we could do that instead but I found it sort of weird since all other Arc related configurators have
I don't recall this but it's very well possible :) |
There are other places where we already call |
Ouch, totally forgot about that. Well, that might be another reason why we call |
That's good pointer, I didn't realize we're already doing it. In that case, I'll scratch this and instead mention it's done automatically. |
dbcb143
to
cbcfc3b
Compare
cbcfc3b
to
6396358
Compare
✔️ The latest workflow run for the pull request has completed successfully. It should be safe to merge provided you have a look at the other checks in the summary. |
Note that this doesn't change or fix any behavior since there is a safety latch that already did this invocation in
ArcProcessor
, see this code.Purpose of this PR is just to add clarity in how to properly operate with context configurators.