mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
net/haproxy: allow retries to be set to "0", closes #2585
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user