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 4834767 commit 61736f5Copy full SHA for 61736f5
src/guidellm/benchmark/aggregator.py
@@ -911,7 +911,7 @@ def _is_in_cooldown(
911
)
912
913
if self.cooldown >= 1: # Count/time-based cooldown
914
- if scheduler_state.remaining_requests < self.cooldown:
+ if scheduler_state.remaining_requests <= self.cooldown:
915
return True
916
917
current_time = (
src/guidellm/benchmark/progress.py
@@ -906,7 +906,7 @@ def _update_processing_states(
906
cancelled_requests: int | None = None,
907
errored_requests: int | None = None,
908
):
909
- if self.benchmark_status is not None:
+ if benchmark_status is not None:
910
self.benchmark_status = benchmark_status
if start_time is not None:
self.start_time = start_time
0 commit comments