Skip to content

Commit

Permalink
fix: min concurrency fal aliases update (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
isidentical authored Jan 23, 2024
1 parent 0be8632 commit 3ce907c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion projects/fal/src/fal/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,12 @@ def alias_update(
min_concurrency: int | None,
):
with client.connect() as connection:
if keep_alive is None and max_multiplexing is None and max_concurrency is None:
if (
keep_alive is None
and max_multiplexing is None
and max_concurrency is None
and min_concurrency is None
):
console.log("No parameters for update were provided, ignoring.")
return

Expand Down

0 comments on commit 3ce907c

Please sign in to comment.