From 826a56ff4445fc67a2a02b83bd6ffe6c09cb2209 Mon Sep 17 00:00:00 2001 From: Artur Neumann Date: Tue, 25 Oct 2022 16:09:52 +0545 Subject: [PATCH] reset cron interval to 15min Signed-off-by: Artur Neumann --- lib/BackgroundJob/CheckNotifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BackgroundJob/CheckNotifications.php b/lib/BackgroundJob/CheckNotifications.php index 474251b50..a48ad31fa 100644 --- a/lib/BackgroundJob/CheckNotifications.php +++ b/lib/BackgroundJob/CheckNotifications.php @@ -47,7 +47,7 @@ public function __construct(ITimeFactory $time, LoggerInterface $logger) { parent::__construct($time); // Every 15 minutes - $this->setInterval(15); + $this->setInterval(60 * 15); $this->openprojectAPIService = $openprojectAPIService; $this->logger = $logger;