chore(*): Removes debugging print statements (#11145)

Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
-LAN-
2024-11-26 22:03:19 +08:00
committed by GitHub
parent f458580dee
commit 9789905a1f
5 changed files with 0 additions and 5 deletions

View File

@@ -64,7 +64,6 @@ class GraphEngineThreadPool(ThreadPoolExecutor):
self.submit_count -= 1
def check_is_full(self) -> None:
print(f"submit_count: {self.submit_count}, max_submit_count: {self.max_submit_count}")
if self.submit_count > self.max_submit_count:
raise ValueError(f"Max submit count {self.max_submit_count} of workflow thread pool reached.")