Reputation: 105
I was wondering why the property quarkus.http.auth.form.timeout has to be defined at build time. I would like to change it's value on different installations, and having to rebuild the whole application just for that makes things much more complicated.
Marco.
Upvotes: 0
Views: 94
Reputation: 1163
Since it's an application.property, have you tried to set the value by an environment variable? eg.
quarkus.http.auth.form.timeout=${AUTH_FORM_TIMEOUT}
This way you could dynamically change it with each deployment with setting AUTH_FORM_TIMEOUT
to different values.
Upvotes: 1