From eff3e4015b0574d2a82d6cacb5b95d17a5f9acc9 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 28 Sep 2021 12:04:42 +0200 Subject: [PATCH] :paperclip: Reduce drastically the auditlog archive task cron schedule. --- backend/src/app/main.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/app/main.clj b/backend/src/app/main.clj index ebed0420b..b5f3b2a1d 100644 --- a/backend/src/app/main.clj +++ b/backend/src/app/main.clj @@ -211,7 +211,7 @@ :task :file-offload}) (when (contains? cf/flags :audit-log-archive) - {:cron #app/cron "0 0 * * * ?" ;; every 1h + {:cron #app/cron "0 */3 * * * ?" ;; every 3m :task :audit-log-archive}) (when (contains? cf/flags :audit-log-gc)