-
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
Fix docs typo #15397
Fix docs typo #15397
Conversation
Both test failures in the incremental build seem to be flakes:
Especially that last one I have seen multiple times before. |
Yes, we need to fix those :/ @glefloch have you seen the new Gradle failure? It looks related to the same issue as before and looks fairly consistent. |
Yes I'm having a look. It seems task ordering is wrong. I will try something ;) |
@@ -10,7 +10,8 @@ | |||
/** | |||
* Whether or not Quarkus should disable it's ability to not do a full restart | |||
* when changes to classes are compatible with JVM instrumentation. | |||
* If this is set to true, Quarkus will always restart on changes and never perform class redefinition. | |||
* | |||
* If this is set to false, Quarkus will always restart on changes and never perform class redefinition. | |||
*/ | |||
@ConfigItem(defaultValue = "true") | |||
boolean instrumentation; |
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.
Why do we have a DevConfig
while we already have a LiveReloadConfig
?
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.
LiveReload config is basically for remote-dev.
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.
Perhaps it should be renamed...
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.
Well... we only had live reload config for remote dev until now. But I think quarkus.live-reload.instrumentation
is a much better name than quarkus.dev.instrumentation
and would be more consistent with the rest.
I can do the legwork if you all agree with it.
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.
Fine with me :)
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.
Yea, in hindsight it should have been under LiveReload, but because it was just for remote dev so far I did not think of it.
No description provided.