Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Django Celeryのドキュメントには、タスクのステータスを取得するために確認できるURLがあることが示されています。これらのURLは何ですか?
これらのURLにアクセスするには、urls.pyファイルの1つからそれらを含める必要があります。例えば:
urls.py
urlpatterns = patterns('', url('^tasks/', include('djcelery.urls')), )
次に、たとえば、を使用してそれらにアクセスしますhttp://example.com/tasks/{{ task_id }}/status/。
http://example.com/tasks/{{ task_id }}/status/