Revision 8ea83914d5523d74ee32dca7997cdbacf687962f authored by cvat-bot[bot] on 05 March 2024, 19:28:58 UTC, committed by GitHub on 05 March 2024, 19:28:58 UTC
2 parent s a942f09 + 925ae6a
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