From ba11e29465ebad89c37111830fda65ed39e78df1 Mon Sep 17 00:00:00 2001 From: Claire Peters Date: Tue, 26 Sep 2023 21:39:14 -0700 Subject: [PATCH] update scheduled_tasks name --- coldfront/core/utils/management/commands/add_scheduled_tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coldfront/core/utils/management/commands/add_scheduled_tasks.py b/coldfront/core/utils/management/commands/add_scheduled_tasks.py index c89de8345..96ef73bc7 100644 --- a/coldfront/core/utils/management/commands/add_scheduled_tasks.py +++ b/coldfront/core/utils/management/commands/add_scheduled_tasks.py @@ -26,7 +26,7 @@ def handle(self, *args, **options): kwargs = { "repeats":-1, } plugins_tasks = { 'fasrc': ['import_quotas', 'id_import_allocations'], - 'sftocf': ['pull_sf_push_cf_redash', 'pull_resource_data'], + 'sftocf': ['pullsf_pushcf_redash', 'pull_resource_data'], 'ldap': ['update_group_membership_ldap', 'id_add_projects'], } scheduled = [task.func for task in Schedule.objects.all()]