1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-24 15:29:36 +02:00

Fix scheduler

This commit is contained in:
Sean Morley 2024-08-21 10:06:09 -04:00
parent 2ef4917adf
commit 704d26f867
2 changed files with 3 additions and 32 deletions

View file

@ -1,30 +0,0 @@
from django.core.management.base import BaseCommand
from django.db import connections
from django.db.utils import OperationalError
import time
from adventures.scheduler import start_scheduler
import logging
logger = logging.getLogger(__name__)
class Command(BaseCommand):
help = 'Starts the APScheduler'
def handle(self, *args, **options):
self.stdout.write('Waiting for database...')
db_conn = None
while not db_conn:
try:
db_conn = connections['default']
except OperationalError:
self.stdout.write('Database unavailable, waiting 1 second...')
time.sleep(1)
self.stdout.write(self.style.SUCCESS('Database available!'))
start_scheduler()
self.stdout.write(self.style.SUCCESS('Scheduler started successfully'))
# Keep the command running
while True:
time.sleep(60)