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 09925a4 commit fa56258Copy full SHA for fa56258
src/guidellm/scheduler/worker.py
@@ -313,14 +313,14 @@ async def _process_runner():
313
dequeued_time = time.time()
314
logger.debug(f"Dequeued Process ID {process_id} || "
315
f"Timestamp {dequeued_time} || "
316
- f"Semaphore {pending._value}/{max_concurrency}")
+ f"Semaphore {pending._value}/{max_concurrency}") # noqa: SLF001
317
318
await pending.acquire()
319
320
lock_acquired_at = time.time()
321
logger.debug(f"Lock acquired Process ID {process_id} ||"
322
f" Timestamp {lock_acquired_at} ||"
323
- f" Semaphore {pending._value}/{max_concurrency}")
+ f" Semaphore {pending._value}/{max_concurrency}") # noqa: SLF001
324
325
def _task_done(_: asyncio.Task):
326
nonlocal pending
0 commit comments