From ca2a578f3890827ababe4ddaeaa2bc08f0ee1097 Mon Sep 17 00:00:00 2001 From: Antonio Lain Date: Wed, 10 Jan 2024 10:23:03 -0800 Subject: [PATCH] Update comment in SDK workflow_metadata --- 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; }