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 73dbf14 commit 6a3ada2Copy full SHA for 6a3ada2
src/guidellm/request/base.py
@@ -48,8 +48,7 @@ def __init__(
48
logger.debug("No tokenizer provided")
49
50
if self._mode == "async":
51
- self._thread = threading.Thread(target=self._populate_queue)
52
- self._thread.daemon = True
+ self._thread = threading.Thread(target=self._populate_queue, daemon=True)
53
self._thread.start()
54
logger.info(
55
"RequestGenerator started in async mode with queue size: {}",
0 commit comments