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 cb60a6d commit 83138caCopy full SHA for 83138ca
1 file changed
src/dstack/_internal/core/models/fleets.py
@@ -143,7 +143,7 @@ def validate_network(cls, value):
143
144
class FleetNodesSpec(CoreModel):
145
min: Annotated[
146
- int, Field(description=("The minimum number of instances to maintain in the fleet."))
+ int, Field(description=("The minimum number of instances to maintain in the fleet"))
147
]
148
target: Annotated[
149
int,
@@ -154,7 +154,7 @@ class FleetNodesSpec(CoreModel):
154
),
155
156
max: Annotated[
157
- Optional[int], Field(description=("The maximum number of instances allowed in the fleet."))
+ Optional[int], Field(description=("The maximum number of instances allowed in the fleet"))
158
] = None
159
160
@root_validator(pre=True)
0 commit comments