Reduce max interval to 60 minutes

Per discussion on Redmine, bringing the maximum probe interval down to 60 minutes. Anything higher than this would provide little real-world benefit to gateway monitoring.
This commit is contained in:
Justin Coffman 2018-06-22 15:58:43 -04:00 committed by GitHub
parent 7ae00d0d8a
commit aa93d3fa6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -323,7 +323,7 @@ $section->addInput(new Form_Input(
$pconfig['interval'],
[
'placeholder' => $dpinger_default['interval'],
'max' => 86400000
'max' => 3600000
]
))->setHelp('How often an ICMP probe will be sent in milliseconds. Default is %d.', $dpinger_default['interval']);