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 1bc8f9a commit 9945710Copy full SHA for 9945710
src/guidellm/config.py
@@ -113,6 +113,7 @@ class Settings(BaseSettings):
113
default_async_loop_sleep: float = 10e-5
114
logging: LoggingSettings = LoggingSettings()
115
default_sweep_number: int = 10
116
+ shutdown_poll_interval_seconds: float = 10
117
118
# HTTP settings
119
request_follow_redirects: bool = True
src/guidellm/scheduler/scheduler.py
@@ -275,7 +275,7 @@ async def _start_processes(
275
requests_queue,
276
responses_queue,
277
shutdown_event,
278
- timedelta(seconds=10).total_seconds(),
+ settings.shutdown_poll_interval_seconds,
279
id_,
280
requests_limit,
281
)
0 commit comments