From 00a1ba4b414dc72e3a57b9e0c3d1d3007954773c Mon Sep 17 00:00:00 2001 From: Toby Lorne Date: Fri, 6 Nov 2020 13:37:39 +0000 Subject: [PATCH] celery: link test less often This is causing the disk of the CBCs to fill up quickly, and their logrotate seems a bit flakey Reducing the rate will ensure the disks fill up less often Signed-off-by: Toby Lorne --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index 5b9c4a89a..29fb57d61 100644 --- a/app/config.py +++ b/app/config.py @@ -312,7 +312,7 @@ class Config(object): }, 'trigger-link-tests': { 'task': 'trigger-link-tests', - 'schedule': timedelta(minutes=5), + 'schedule': timedelta(minutes=15), 'options': {'queue': QueueNames.PERIODIC} }, }