mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-22 00:56:37 +03:00
Refactoring
This commit is contained in:
parent
aed0928ba8
commit
ec2f71fc78
|
@ -11,7 +11,7 @@ from .utils import get_subclasses
|
|||
|
||||
|
||||
@shared_task(queue=config.CELERY_QUEUE)
|
||||
def sync_clickhouse_converter(cls): # type: (ClickHouseModel) -> None
|
||||
def sync_clickhouse_model(cls): # type: (ClickHouseModel) -> None
|
||||
"""
|
||||
Syncs one batch of given ClickHouseModel
|
||||
:param cls: ClickHouseModel subclass
|
||||
|
@ -41,4 +41,4 @@ def clickhouse_auto_sync():
|
|||
if cls.need_sync():
|
||||
# Даже если синхронизация вдруг не выполнится, не страшно, что мы установили период синхронизации
|
||||
# Она выполнится следующей таской через интервал.
|
||||
sync_clickhouse_converter.delay(cls)
|
||||
sync_clickhouse_model.delay(cls)
|
||||
|
|
Loading…
Reference in New Issue
Block a user