-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
add support for programmatically adding bean configurations #11527
Conversation
8748096
to
e953dde
Compare
Personally, I don't like this. People will end up disabling internal packages and then be upset if we modify something internally. |
I tried to exclude the critical packages and make the API difficult enough to use that it requires a bit of thought, but I understand the concern. |
We can add a check that will throw if one of the packages is |
there is a check already but it is limited to |
I would not allow to disable Micronaut packages |
ok will go with that |
e953dde
to
b4f1e4e
Compare
Quality Gate failedFailed conditions |
Allows adding bean configurations at runtime that allow, for example, disabling certain beans within a package. Later it may make sense to allow
@MicronautTest
to use this disable certain beans as necessary.