From 54ecdab2e1f2f123aa1b0aefd5177116a49ad9e7 Mon Sep 17 00:00:00 2001 From: Abhinav Nekkanti <10552725+anekkanti@users.noreply.github.com> Date: Wed, 13 Mar 2024 09:27:27 -0700 Subject: [PATCH] Fix comment with the correct case for operation statuses. --- temporal/api/cloud/operation/v1/message.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporal/api/cloud/operation/v1/message.proto b/temporal/api/cloud/operation/v1/message.proto index adb98d0..0fa48c3 100644 --- a/temporal/api/cloud/operation/v1/message.proto +++ b/temporal/api/cloud/operation/v1/message.proto @@ -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;