From 54678175ba6ada96d15f7f11d243309c3ca0cb24 Mon Sep 17 00:00:00 2001 From: n07070 Date: Thu, 4 Jun 2026 01:27:23 +0200 Subject: [PATCH] Remove socketio from Worker for the moment --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 2acd4e8..2ae875a 100644 --- a/src/main.py +++ b/src/main.py @@ -111,7 +111,7 @@ web = Web(app, print_queue) # Start worker thread # When created, the worker will try to find printers connected to the system try: - worker = PrintWorker(app, print_queue, socketio) + worker = PrintWorker(app, print_queue) worker.start() except Exception as e: app.logger.error("Could not start the worker because %s ", str(e))