mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-09 08:56:23 -04:00
net/haproxy: allow retries to be set to "0", closes #2585
This commit is contained in:
parent
49a4609bf1
commit
7a0aeeba68
2 changed files with 3 additions and 2 deletions
|
|
@ -19,6 +19,7 @@ Fixed:
|
|||
Changed:
|
||||
* deploy haproxy.conf if it does not exist (#2474)
|
||||
* add new timeout (60s) which will terminate open connections when using graceful stop
|
||||
* allow retries to be set to "0" (#2585)
|
||||
|
||||
3.5
|
||||
|
||||
|
|
|
|||
|
|
@ -223,7 +223,7 @@
|
|||
<Required>N</Required>
|
||||
</timeoutServer>
|
||||
<retries type="IntegerField">
|
||||
<MinimumValue>1</MinimumValue>
|
||||
<MinimumValue>0</MinimumValue>
|
||||
<MaximumValue>100</MaximumValue>
|
||||
<default>3</default>
|
||||
<ValidationMessage>Please specify a value between 1 and 100.</ValidationMessage>
|
||||
|
|
@ -1143,7 +1143,7 @@
|
|||
<Required>N</Required>
|
||||
</tuning_timeoutServer>
|
||||
<tuning_retries type="IntegerField">
|
||||
<MinimumValue>1</MinimumValue>
|
||||
<MinimumValue>0</MinimumValue>
|
||||
<MaximumValue>100</MaximumValue>
|
||||
<ValidationMessage>Please specify a value between 1 and 100.</ValidationMessage>
|
||||
<Required>N</Required>
|
||||
|
|
|
|||
Loading…
Reference in a new issue