You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
572 B
12 lines
572 B
from django.core.management.base import BaseCommand
|
|
from tournaments.tasks import check_confirmation_deadlines
|
|
from background_task.models import Task
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Run confirmation deadline check immediately'
|
|
|
|
def handle(self, *args, **options):
|
|
# Run the function directly (not through the task queue)
|
|
Task.objects.filter(task_name='tournaments.tasks.check_confirmation_deadlines').delete()
|
|
check_confirmation_deadlines()
|
|
self.stdout.write(self.style.SUCCESS('Successfully checked confirmation deadlines'))
|
|
|