diff --git a/osinaweb/osinaweb/celery.py b/osinaweb/osinaweb/celery.py index 36b70bec..3c37056b 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='1'), # Run every secon + 'schedule': crontab(minute='*/1'), # Run every minute }, }