Marco
Marco

Reputation: 105

quarkus.http.auth.form.timeout build tipe property

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

Answers (1)

Péter Veres
Péter Veres

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

Related Questions