-
Notifications
You must be signed in to change notification settings - Fork 24
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 option for empty default values #477
Conversation
This is done in order to avoid the overhead of looking up properties that won't be used anyway Requires: smallrye/smallrye-context-propagation#477
This is done in order to avoid the overhead of looking up properties that won't be used anyway Requires: smallrye/smallrye-context-propagation#477
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.
LGTM, thanks!
@geoand apparently, we have a requirement for commits to be signed now (first time I hear about this, BTW):
|
Interesting, let me check and see how that works |
This is done in order to avoid the overhead of looking up properties that won't be used anyway Requires: smallrye/smallrye-context-propagation#477 Signed-off-by: Georgios Andrianakis <[email protected]>
Should be okay hopefully :) |
Apparently not :-/ |
I'll try again |
Your commit does seem to be signed, so I'm not sure that's it. |
In Quarkus at static init time we build what is essentially a no-op CP instance, but creating this instance currently incurs some overhead due to the use of Config to look up default values. This change, will allow Quarkus to set empty default values option
24d2deb
to
568440c
Compare
Tried again |
This is done in order to avoid the overhead of looking up properties that won't be used anyway Requires: smallrye/smallrye-context-propagation#477 Signed-off-by: Georgios Andrianakis <[email protected]>
This is done in order to avoid the overhead of looking up properties that won't be used anyway Requires: smallrye/smallrye-context-propagation#477 Signed-off-by: Georgios Andrianakis <[email protected]>
In Quarkus at static init time we build what is
essentially a no-op CP instance, but creating
this instance currently incurs some overhead
due to the use of Config to look up default values.
This change, will allow Quarkus to set empty
default values option and slightly improve startup