79075200

Date: 2024-10-10 15:50:30
Score: 1
Natty:
Report link
  1. Open the Django Shell: run the following command in the terminal:
    python manage.py shell
  2. Delete All Queued Tasks: Execute the following commands to delete all queued tasks:

from django_q.models import Task #Delete all queued tasks Task.objects.filter(status='Q').delete()

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: yehuda r