From bde4943da51aac866ed0870617b868d779bc6835 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 4 Jun 2017 19:01:22 +0000 Subject: [PATCH] Every hour should mean: every hour :) --- include/poller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/poller.php b/include/poller.php index 0d07605882..bae2ac5e96 100644 --- a/include/poller.php +++ b/include/poller.php @@ -105,7 +105,7 @@ function poller_run($argv, $argc){ } // Quit the poller once every hour - if (time() > ($starttime + 360)) { + if (time() > ($starttime + 3600)) { logger('Process lifetime reachted, quitting.', LOGGER_DEBUG); return; }