Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/4e365c6aa6f7e0786d8ceefdaa91099da59431f1/libs/engineio/async_drivers/threading.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/engineio/async_drivers/threading.py

20 lines
463 B

import queue
import threading
import time
from engineio.async_drivers._websocket_wsgi import SimpleWebSocketWSGI
class DaemonThread(threading.Thread): # pragma: no cover
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs, daemon=True)
_async = {
'thread': DaemonThread,
'queue': queue.Queue,
'queue_empty': queue.Empty,
'event': threading.Event,
'websocket': SimpleWebSocketWSGI,
'sleep': time.sleep,
}