Merge "Fix max concurrency log line"

This commit is contained in:
Zuul 2024-02-12 19:51:08 +00:00 committed by Gerrit Code Review
commit 8572e1874a
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class PoolWorker(threading.Thread, stats.StatsReporter):
if (provider.max_concurrency > 0 and
active_threads >= provider.max_concurrency):
self.log.debug("Request handling limited: %s "
"active threads ",
"active threads "
"with max concurrency of %s",
active_threads, provider.max_concurrency)
continue