Skip to content

Commit 51940f3

Browse files
rob-clarkeshiv-tyagi
authored andcommitted
Add missing TIMED_OUT literal to schema
1 parent ddeee32 commit 51940f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/schemas/builds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class BuildProgress(BaseModel):
1111
..., ge=0, le=100, description="Build completion percentage"
1212
)
1313
state: Literal[
14-
"PENDING", "RUNNING", "SUCCESS", "FAILURE", "ERROR"
14+
"PENDING", "RUNNING", "SUCCESS", "FAILURE", "ERROR", "TIMED_OUT"
1515
] = Field(..., description="Current build state")
1616

1717

0 commit comments

Comments
 (0)