Skip to content

Commit

Permalink
Fix enum for ExecuteStatus (#313)
Browse files Browse the repository at this point in the history
* FAILED is past tense so change it from SUCCESS to SUCCEEDED
  • Loading branch information
jlewi authored Oct 18, 2024
1 parent 46f2ad1 commit 518c59e
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 57 deletions.
2 changes: 1 addition & 1 deletion protos/foyle/v1alpha1/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ message LogEvent {

enum ExecuteStatus {
UNKNOWN = 0;
SUCCESS = 1;
SUCCEEDED = 1;
FAILED = 2;
}

Expand Down
111 changes: 56 additions & 55 deletions protos/go/foyle/v1alpha1/agent.pb.go

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

2 changes: 1 addition & 1 deletion protos/go/foyle/v1alpha1/eval.zap.go

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

0 comments on commit 518c59e

Please sign in to comment.