Relative Content

Tag Archive for pythondjangodockercelery

Why is my Django app unable to find my URL pattern?

My Django project is run in Docker and I use Celery to handle queuing. When a user submits an audio file the system starts an asynchronous task(that transcribes the audio), continuously checks its progress, and updates the UI once the transcription is complete, with a download button. However I’ve been getting an error after the transcription completes but before the download button appears. The error indicates that it can’t find the view that provides the completed transcript to the user. Here’s my code.