Skip to content

Commit

Permalink
Job status enum
Browse files Browse the repository at this point in the history
  • Loading branch information
biglittlebigben committed May 20, 2024
1 parent 7908d00 commit 5a410f7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 18 deletions.
34 changes: 19 additions & 15 deletions livekit/livekit_agent.pb.go

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

7 changes: 4 additions & 3 deletions protobufs/livekit_agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,10 @@ enum WorkerStatus {
}

enum JobStatus {
JS_UNKNOWN = 0;
JS_SUCCESS = 1;
JS_FAILED = 2;
JS_PENDING = 0;
JS_STARTED = 1;
JS_SUCCESS = 2;
JS_FAILED = 3;
}

message SimulateJobRequest {
Expand Down

0 comments on commit 5a410f7

Please sign in to comment.