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/63335f40fcefd773405c11db8550988662ac88ae/libs/apscheduler/schedulers/__init__.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/apscheduler/schedulers/__init__.py

13 lines
406 B

class SchedulerAlreadyRunningError(Exception):
"""Raised when attempting to start or configure the scheduler when it's already running."""
def __str__(self):
return 'Scheduler is already running'
class SchedulerNotRunningError(Exception):
"""Raised when attempting to shutdown the scheduler when it's not running."""
def __str__(self):
return 'Scheduler is not running'