We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28e4593 commit fb4c683Copy full SHA for fb4c683
gpustack_runtime/deployer/__types__.py
@@ -1480,7 +1480,10 @@ def pool(self):
1480
pool_threads = envs.GPUSTACK_RUNTIME_DEPLOY_ASYNC_THREADS
1481
if pool_threads and pool_threads < 1:
1482
pool_threads = None
1483
- self._pool = ThreadPoolExecutor(max_workers=pool_threads)
+ self._pool = ThreadPoolExecutor(
1484
+ max_workers=pool_threads,
1485
+ thread_name_prefix=f"runtime-deployer-{self.name}",
1486
+ )
1487
return self._pool
1488
1489
@_default_args
0 commit comments