Skip to content

Commit

Permalink
Add aborting workflow execution phase (flyteorg#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
Katrina Rogan authored Jan 5, 2022
1 parent 967c75f commit fceab47
Show file tree
Hide file tree
Showing 14 changed files with 171 additions and 136 deletions.
63 changes: 33 additions & 30 deletions gen/pb-cpp/flyteidl/core/execution.pb.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion gen/pb-cpp/flyteidl/core/execution.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

97 changes: 50 additions & 47 deletions gen/pb-go/flyteidl/core/execution.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion gen/pb-go/flyteidl/service/admin.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -6108,7 +6108,8 @@
"FAILING",
"FAILED",
"ABORTED",
"TIMED_OUT"
"TIMED_OUT",
"ABORTING"
],
"default": "UNDEFINED"
},
Expand Down
1 change: 1 addition & 0 deletions gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29955,6 +29955,7 @@ definitions:
- "FAILED"
- "ABORTED"
- "TIMED_OUT"
- "ABORTING"
default: "UNDEFINED"
coreWorkflowMetadata:
type: "object"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ const (
CoreWorkflowExecutionPhaseFAILED CoreWorkflowExecutionPhase = "FAILED"
CoreWorkflowExecutionPhaseABORTED CoreWorkflowExecutionPhase = "ABORTED"
CoreWorkflowExecutionPhaseTIMED_OUT CoreWorkflowExecutionPhase = "TIMED_OUT"
CoreWorkflowExecutionPhaseABORTING CoreWorkflowExecutionPhase = "ABORTING"
)
4 changes: 2 additions & 2 deletions gen/pb-go/flyteidl/service/openapi.go

Large diffs are not rendered by default.

Loading

0 comments on commit fceab47

Please sign in to comment.