From 926c85d735aab1cc955f2990ac621bc8e1c844ee Mon Sep 17 00:00:00 2001 From: emile Date: Thu, 21 Mar 2024 23:23:38 +0200 Subject: [PATCH] ss --- osinaweb/osinaweb/celery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osinaweb/osinaweb/celery.py b/osinaweb/osinaweb/celery.py index 12ef6823..3e05db3a 100644 --- a/osinaweb/osinaweb/celery.py +++ b/osinaweb/osinaweb/celery.py @@ -18,6 +18,6 @@ celery_app.autodiscover_tasks() celery_app.conf.beat_schedule = { 'set-offline-every-minute': { 'task': 'osinacore.tasks.set_offline', # Assuming your task is in tasks.py in your_app - 'schedule': crontab(minute='*/5'), # Run every minute + 'schedule': crontab(minute='*/3'), # Run every minute }, }