Skip to content

Commit 24f2ca3

Browse files
markurtzsjmonson
andauthored
Update src/guidellm/scheduler/worker_group.py
Co-authored-by: Samuel Monson <[email protected]> Signed-off-by: Mark Kurtz <[email protected]>
1 parent 2b0fef8 commit 24f2ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guidellm/scheduler/worker_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ async def create_processes(self):
161161
self.backend.requests_limit or math.inf,
162162
)
163163
) != math.inf:
164-
max_conc = requests_limit # type: ignore[assignment]
164+
max_conc = int(requests_limit)
165165
else:
166166
# If concurrency not specified, use settings
167167
max_conc = settings.max_concurrency

0 commit comments

Comments
 (0)