|
@@ -107,13 +107,7 @@ class InboundClient:
|
|
|
else:
|
|
|
random_index = random.randint(0, len(self.executors) - 1) if self.executors else 0
|
|
|
|
|
|
-
|
|
|
- executor = self.executors.get(random_index)
|
|
|
- if executor is None:
|
|
|
- self.logger.error(f"Executor not found for index {random_index}.")
|
|
|
- executor = concurrent.futures.ThreadPoolExecutor(max_workers=1)
|
|
|
- return executor
|
|
|
-
|
|
|
+ return self.executors.get(random_index)
|
|
|
|
|
|
def process_esl_event(self, e):
|
|
|
|