1
0
Fork 0

Remove periodic run of sync_to_db task

Signed-off-by: Alfredos-Panagiotis Damkalis <fredy@fredy.gr>
merge-requests/837/head
Alfredos-Panagiotis Damkalis 2019-12-21 18:22:42 +02:00
parent 5948cc6442
commit 69b694b5df
1 changed files with 0 additions and 9 deletions

View File

@ -65,13 +65,6 @@ def notify_for_stations_without_results():
periodic_task()
@APP.task
def sync_to_db():
"""Wrapper task for 'sync_to_db' shared task"""
from network.base.tasks import sync_to_db as periodic_task
periodic_task()
@APP.on_after_finalize.connect
def setup_periodic_tasks(sender, **kwargs): # pylint: disable=W0613
"""Initializes celery tasks that need to run on a scheduled basis"""
@ -90,5 +83,3 @@ def setup_periodic_tasks(sender, **kwargs): # pylint: disable=W0613
notify_for_stations_without_results.s(),
name='notify_for_stations_without_results'
)
sender.add_periodic_task(RUN_TWICE_HOURLY, sync_to_db.s(), name='sync-to-db')