From bfb400ad36f629b82a2483c831a1e6e8b62abd07 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 3 Nov 2024 14:09:38 +0000 Subject: [PATCH] web: jobs: Include the default backend Signed-off-by: Michael Tremer --- src/web/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/jobs.py b/src/web/jobs.py index 4396d1ee..f5c8761e 100644 --- a/src/web/jobs.py +++ b/src/web/jobs.py @@ -11,7 +11,7 @@ from . import ui_modules # Setup logging log = logging.getLogger("pbs.web.jobs") -class APIv1ControlHandler(base.APIMixin, tornado.websocket.WebSocketHandler): +class APIv1ControlHandler(base.APIMixin, base.BackendMixin, tornado.websocket.WebSocketHandler): """ Builders connect to this handler when they are running a build. -- 2.47.2