私はdjango_cronを使用しているため、スケジュール通りにタスクを実装する必要があります。設定で :django_cronは一度だけ実行され、スケジューラは動作しません。
INSTALLED_APPS = [
'mailsnake',
'corsheaders',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'Avaana_web',
'rest_framework',
'rest_framework.authtoken',
'django_cron',
]
とcron.py
from django_cron import CronJobBase, Schedule,cronScheduler
import datetime,os
class MyCronJob(CronJobBase):
RUN_EVERY_MINS = .3
RETRY_AFTER_FAILURE_MINS = 5
ALLOW_PARALLEL_RUNS = True
schedule = Schedule(run_every_mins=RUN_EVERY_MINS,
retry_after_failure_mins=RETRY_AFTER_FAILURE_MINS)
code = 'my_app.my_cron_job'
def do(self):
print("hello")
をしかし、私は、出力のショーや終了後
$ python manage.py runcrons
hello
を実行します。
30秒ごとにどのように出力されるのですか。
私はdjango_cronもインストールしています。 via $ pip install django_cron –
'python -u manage.py runcrons'を実行してみてください –
このリンクから#6を読んでくださいhttp://django-cron.readthedocs.io/en/latest/installation.html – Anoop