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 }, }