Revision 55a22e11e6c38364b31788dbd598bfc7cec340c7 authored by Maria Khrustaleva on 24 October 2023, 10:31:50 UTC, committed by GitHub on 24 October 2023, 10:31:50 UTC
1 parent acbb727
Raw File
rqscheduler.py
#!/usr/bin/env python

# This script adds access to the Django env and settings in the default rqscheduler
# implementation. This is required for correct work with CVAT queue settings and
# their access options such as login and password.

# Required to initialize Django settings correctly
from cvat.asgi import application  # pylint: disable=unused-import

from rq_scheduler.scripts import rqscheduler

if __name__ == '__main__':
    rqscheduler.main()
back to top