Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/dstack/_internal/core/models/configurations.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ class ScalingSpec(CoreModel):
Field(
description="The target value of the metric. "
"The number of replicas is calculated based on this number and automatically adjusts "
"(scales up or down) as this metric changes"
"(scales up or down) as this metric changes",
gt=0,
),
]
scale_up_delay: Annotated[
Expand Down
Loading