Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix comment with the correct case for operation statuses. #17

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion temporal/api/cloud/operation/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ message AsyncOperation {
// The operation id
string id = 1;
// The current state of this operation
// Possible values are: PENDING, IN_PROGRESS, FAILED, CANCELLED, FULFILLED
// Possible values are: pending, in_progress, failed, cancelled, fulfilled
string state = 2;
// The recommended duration to check back for an update in the operation's state
google.protobuf.Duration check_duration = 3;
Expand Down
Loading