crontab(day_of_month = 1)に設定されたこのタスクがあります。しかし、タスクを実行すると、一度実行するはずのタスクを細かく送信し続けます。
私のtasks.pyから
from celery.task.schedules import crontab
@periodic_task(run_every=crontab(day_of_month=1))
def Sample():
...
何か不足していますか?
crontab(day_of_month = 1)に設定されたこのタスクがあります。しかし、タスクを実行すると、一度実行するはずのタスクを細かく送信し続けます。
私のtasks.pyから
from celery.task.schedules import crontab
@periodic_task(run_every=crontab(day_of_month=1))
def Sample():
...
何か不足していますか?