From 2b464188ab4c1bf399affb0306cbf3260024853f Mon Sep 17 00:00:00 2001 From: Antonio Lain <135073478+antlai-temporal@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:03:41 -0800 Subject: [PATCH] Update comment in SDK workflow_metadata (#342) --- temporal/api/sdk/v1/workflow_metadata.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/temporal/api/sdk/v1/workflow_metadata.proto b/temporal/api/sdk/v1/workflow_metadata.proto index 35a78fb1..e45fe09e 100644 --- a/temporal/api/sdk/v1/workflow_metadata.proto +++ b/temporal/api/sdk/v1/workflow_metadata.proto @@ -31,7 +31,7 @@ option java_outer_classname = "WorkflowMetadataProto"; option ruby_package = "Temporalio::Api::Sdk::V1"; option csharp_namespace = "Temporalio.Api.Sdk.V1"; -// The name of the query to retrieve this information is `__temporal_getWorkflowMetadata`. +// The name of the query to retrieve this information is `__temporal_workflow_metadata`. message WorkflowMetadata { // Metadata provided at declaration or creation time. WorkflowDefinition definition = 1; @@ -62,5 +62,5 @@ message WorkflowInteractionDefinition { // An optional interaction description provided by the application. // By convention, external tools may interpret its first part, // i.e., ending with a line break, as a summary of the description. - string description = 2; + string description = 2; }