Spaces:
Running
Running
File size: 309 Bytes
947c08e |
1 2 3 4 5 6 7 8 9 10 11 12 |
from core.settings import DEBUG
import sys
if len(sys.argv) > 1 and not (sys.argv[1] in ['migrate', "makemigrations", "clear_all_sessions"]):
print("[Worker] Starting Thread...")
from backend.invoke_worker import (
session,
chapter_queue,
)
print("[Worker] Thread Started!")
|