Remove socketio from Worker for the moment

This commit is contained in:
n07070
2026-06-04 01:27:23 +02:00
parent 2262840f75
commit 54678175ba

View File

@@ -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))