-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
What is the jetty.deploy.scanInterval
default? module, ini, code, and documentation do not agree.
#11424
Comments
The Jetty XML syntax ... <Set name="foo" property="propname"/> means that the setter This means the defaults in code win if you don't set a the property. This is expected and intentional behavior, not a bug in the XML that needs addressing. |
debugging/klicking through jetty code should not be the source of information. Also look here: |
Now documentation, that's an important thing to address. But still, the XML doesn't need changing to address either of those concerns. |
jetty.deploy.scanInterval
default? module, ini, code, and documentation do not agree.
…to `1` + Leaving embedded default alone (at `0`)
…#11437) + Update documentation and defaults in mod files
Jetty version(s)
Jetty 12.0.6
Jetty Environment
ee9
Java version/vendor
(use: java -version)
jdk21
OS type/version
linux
Description
i was sure, the suggestions in ee9-deploy.mod/.ini are telling us, what the default-value is and if we want it another way, we can change it in the ini file:
but looking into the code, the default of this scanInterval is "0":
is this a bug or some feature, which i do not find any default value for in documentation?
maybe it's also just missing "default=1" in /etc/jetty-ee9-deploy.xml:
<Set name="scanInterval" property="jetty.deploy.scanInterval"/>
-->
<Set name="scanInterval" property="jetty.deploy.scanInterval" default="1"/>
The text was updated successfully, but these errors were encountered: