From 33dd4ea3355e508bdfcfa42f31199c5073de12ff Mon Sep 17 00:00:00 2001 From: Anna Larch Date: Fri, 28 Jul 2023 14:55:14 +0200 Subject: [PATCH] fix(Quota): set job time insensitive and lower interval --- lib/BackgroundJob/QuotaJob.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/BackgroundJob/QuotaJob.php b/lib/BackgroundJob/QuotaJob.php index 1d08ce7405..3fdd2c0914 100644 --- a/lib/BackgroundJob/QuotaJob.php +++ b/lib/BackgroundJob/QuotaJob.php @@ -60,8 +60,8 @@ public function __construct(ITimeFactory $time, $this->jobList = $jobList; $this->mailManager = $mailManager; - $this->setInterval(24 * 60 * 60); - $this->setTimeSensitivity(self::TIME_SENSITIVE); + $this->setInterval(60 * 60 * 24 * 7); + $this->setTimeSensitivity(self::TIME_INSENSITIVE); $this->notificationManager = $notificationManager; }