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 09aa1a4 commit 9b3ff02Copy full SHA for 9b3ff02
1 file changed
src/dstack/_internal/server/models.py
@@ -614,6 +614,7 @@ class InstanceModel(BaseModel):
614
615
# instance termination handling
616
termination_deadline: Mapped[Optional[datetime]] = mapped_column(NaiveDateTime)
617
+ # TODO: Migrate to EnumAsString(InstanceTerminationReason, 100) after enough releases to ensure backward compatibility
618
termination_reason: Mapped[Optional[str]] = mapped_column(String(4000))
619
termination_reason_message: Mapped[Optional[str]] = mapped_column(String(4000))
620
# Deprecated since 0.19.22, not used
0 commit comments