From ce407568d98f6709a99a35b97c66677d40f945f6 Mon Sep 17 00:00:00 2001 From: Benjamin Neff <benjamin@coding4coffee.ch> Date: Thu, 28 Jan 2016 23:46:37 +0100 Subject: [PATCH] fix queues for cron jobs remove the queues from the schedule.yml so the configured queue in the worker is used --- config/schedule.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/config/schedule.yml b/config/schedule.yml index 1407cfdbf5..5ba7e5cd67 100644 --- a/config/schedule.yml +++ b/config/schedule.yml @@ -1,14 +1,11 @@ clean_cached_files: cron: "0 0 * * *" class: "Workers::CleanCachedFiles" - queue: "clean_cached_files" queue_users_for_removal: cron: "0 0 * * *" class: "Workers::QueueUsersForRemoval" - queue: queue_users_for_removal recurring_pod_check: cron: "0 0 * * *" class: "Workers::RecurringPodCheck" - queue: recurring_pod_check -- GitLab