mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Extend maximum monitoring interval.
The existing monitoring interval was a maximum of 86400 ms, or approximately 86 seconds. This can cause excessive data usage over strictly metered connections. This patch extends the maximum interval to 86,400,000 ms, or exactly 24 hours.
This commit is contained in:
parent
be228fd8f7
commit
7ae00d0d8a
@ -323,7 +323,7 @@ $section->addInput(new Form_Input(
|
||||
$pconfig['interval'],
|
||||
[
|
||||
'placeholder' => $dpinger_default['interval'],
|
||||
'max' => 86400
|
||||
'max' => 86400000
|
||||
]
|
||||
))->setHelp('How often an ICMP probe will be sent in milliseconds. Default is %d.', $dpinger_default['interval']);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user