from django.core.management.base import BaseCommand from tournaments.tasks import check_confirmation_deadlines class Command(BaseCommand): help = 'Run confirmation deadline check immediately' def handle(self, *args, **options): # Run the function directly (not through the task queue) check_confirmation_deadlines(schedule=0) self.stdout.write(self.style.SUCCESS('Successfully checked confirmation deadlines'))