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/67d5e2a9c2d0fa6bb75ae7503a9f54562c178687/libs/waitress/tests/fixtureapps/sleepy.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/waitress/tests/fixtureapps/sleepy.py

13 lines
342 B

import time
def app(environ, start_response): # pragma: no cover
if environ["PATH_INFO"] == "/sleepy":
time.sleep(2)
body = b"sleepy returned"
else:
body = b"notsleepy returned"
cl = str(len(body))
start_response("200 OK", [("Content-Length", cl), ("Content-Type", "text/plain")])
return [body]