def start_job_runner_thread()

in competitions/app.py [0:0]


def start_job_runner_thread():
    thread = threading.Thread(target=run_job_runner)
    # thread.daemon = True
    thread.start()
    return thread