diff options
author | Joas Schilling <coding@schilljs.com> | 2022-01-31 21:23:07 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-02-07 13:54:54 +0100 |
commit | b8e0a3dbdd61877050328c9ed5ad72922c330a97 (patch) | |
tree | 1bb438e6653850873906400130d4320649cb4c3e /apps/contactsinteraction/lib | |
parent | 3fd55cb4df80b6434cc5f028f80f1419b3f79202 (diff) | |
download | nextcloud-server-b8e0a3dbdd61877050328c9ed5ad72922c330a97.tar.gz nextcloud-server-b8e0a3dbdd61877050328c9ed5ad72922c330a97.zip |
Use the new option to signaling insensitivity
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/contactsinteraction/lib')
-rw-r--r-- | apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php b/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php index 2a48452d426..fd370ce60e5 100644 --- a/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php +++ b/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php @@ -27,6 +27,7 @@ namespace OCA\ContactsInteraction\BackgroundJob; use OCA\ContactsInteraction\Db\RecentContactMapper; use OCP\AppFramework\Utility\ITimeFactory; +use OCP\BackgroundJob\IJob; use OCP\BackgroundJob\TimedJob; class CleanupJob extends TimedJob { @@ -38,7 +39,8 @@ class CleanupJob extends TimedJob { RecentContactMapper $mapper) { parent::__construct($time); - $this->setInterval(12 * 60 * 60); + $this->setInterval(24 * 60 * 60); + $this->setTimeSensitivity(IJob::TIME_INSENSITIVE); $this->mapper = $mapper; } |