From 00b4569f8e7ae4bd7bb450699fb8c268cc130842 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 20 Mar 2024 12:02:39 +0200 Subject: [PATCH] webhook queue change scheduling --- .../Espo/Resources/metadata/entityDefs/ScheduledJob.json | 2 +- install/core/afterInstall/records.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json b/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json index 8c0da2168a..a3f5a35712 100644 --- a/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json +++ b/application/Espo/Resources/metadata/entityDefs/ScheduledJob.json @@ -78,6 +78,6 @@ "Cleanup": "1 1 * * 0", "AuthTokenControl": "*/6 * * * *", "SendEmailNotifications": "*/2 * * * *", - "ProcessWebhookQueue": "*/5 * * * *" + "ProcessWebhookQueue": "*/2 * * * *" } } diff --git a/install/core/afterInstall/records.php b/install/core/afterInstall/records.php index 0ec4cbbf51..30bb101f52 100644 --- a/install/core/afterInstall/records.php +++ b/install/core/afterInstall/records.php @@ -90,7 +90,7 @@ return [ 'name' => 'Process Webhook Queue', 'job' => 'ProcessWebhookQueue', 'status' => 'Active', - 'scheduling' => '*/5 * * * *', + 'scheduling' => '*/2 * * * *', ], ], ];