Skip to content Skip to sidebar Skip to footer

How To Provide User Constant Notification About Celery's Task Execution Status?

I integrated my project with celery in this way, inside views.py after receving request from the user def upload(request): if 'POST' == request.method: # save the file

Solution 1:

You need a real time mechanism. I would suggest Firebase. Update the Firebase real time DB field of user id with a boolean=True at the end of the celery task. Implement a javascript function to listen to Firebase database user_id object changes -> update the UI


Post a Comment for "How To Provide User Constant Notification About Celery's Task Execution Status?"