From aa93d3fa6c6ee39878fc1705ca64cbb46af5c3be Mon Sep 17 00:00:00 2001 From: Justin Coffman <12767509+whislock@users.noreply.github.com> Date: Fri, 22 Jun 2018 15:58:43 -0400 Subject: [PATCH] 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. --- src/usr/local/www/system_gateways_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usr/local/www/system_gateways_edit.php b/src/usr/local/www/system_gateways_edit.php index 922f96e0f7..280e4bc123 100644 --- a/src/usr/local/www/system_gateways_edit.php +++ b/src/usr/local/www/system_gateways_edit.php @@ -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']);