celery-progress icon indicating copy to clipboard operation
celery-progress copied to clipboard

Drop in, configurable, dependency-free progress bars for your Django/Celery applications.

Results 22 celery-progress issues
Sort by recently updated
recently updated
newest added

I like this very much but my current use case involves a complex set of chains and chords. I want to monitor the progress of the workflow as a whole,...

question

Hi Cory, thank you very much for this repo! Do you think it is easy to integrate this with htmx? If yes, what files and methods do I have to...

question

Any user, independent whether they are logged in or permitted, can get data about any task using the get_progress endpoint.

suggestion to fix [this issue](https://github.com/czue/celery-progress/issues/73)

Hi @czue, I have tried your advice but the error still there. In my case, the webpage was worked but when I upload a video, the web shows me the...

question

Your usage notes for the view depends on the task returning a task_id: ``` def progress_view(request): result = my_task.delay(10) return render(request, 'display_progress.html', context={'task_id': result.task_id}) ``` but a transaction.on_commit does not...

If a ProgressRecorder is created, its state is not initialized until set_progress() is called. During this time, I think there is a race condition where a page calling initProgressBar() can...

Hello. Is there any way to track the progress of a celery group? That is, spawning a lot of asynchronous tasks, and keeping track of how many subtasks are completed...

question

It seems the progress bar will not update anymore when it encountered a network Error. For example, when I flap the network, the progress bar will stop updating forever. I...

Recently when we tried deploying our app and installing all the packages, ran into an issue: django-celery 3.2.2 depends on celery=3.1.15 Seems like there has not been much update to...

question