User-Space thread balancing + refactoring

This commit is contained in:
Domingo Dirutigliano
2025-02-16 16:33:34 +01:00
parent 63e7f73139
commit 7f7e3353ec
22 changed files with 805 additions and 729 deletions

View File

@@ -57,9 +57,9 @@ class FiregexInterceptor:
self.process.kill()
raise Exception("Invalid binary output")
line = line_fut.decode()
if line.startswith("QUEUES "):
if line.startswith("QUEUE "):
params = line.split()
return (int(params[1]), int(params[2]))
return (int(params[1]), int(params[1]))
else:
self.process.kill()
raise Exception("Invalid binary output")