From 06104b693d840239ad2649555423dc565335aaea Mon Sep 17 00:00:00 2001 From: Tim Deeb-Swihart Date: Thu, 29 Feb 2024 15:58:12 -0800 Subject: [PATCH] Change Namespace data map to contain bytes --- temporal/api/namespace/v1/message.proto | 4 ++-- temporal/api/workflowservice/v1/request_response.proto | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/temporal/api/namespace/v1/message.proto b/temporal/api/namespace/v1/message.proto index 3add0549..19df7e56 100644 --- a/temporal/api/namespace/v1/message.proto +++ b/temporal/api/namespace/v1/message.proto @@ -43,7 +43,7 @@ message NamespaceInfo { string description = 3; string owner_email = 4; // A key-value map for any customized purpose. - map data = 5; + map data = 5; string id = 6; // All capabilities the namespace supports. Capabilities capabilities = 7; @@ -92,7 +92,7 @@ message UpdateNamespaceInfo { // A key-value map for any customized purpose. // If data already exists on the namespace, // this will merge with the existing key values. - map data = 3; + map data = 3; // New namespace state, server will reject if transition is not allowed. // Allowed transitions are: // Registered -> [ Deleted | Deprecated | Handover ] diff --git a/temporal/api/workflowservice/v1/request_response.proto b/temporal/api/workflowservice/v1/request_response.proto index 8a83808d..c4c51670 100644 --- a/temporal/api/workflowservice/v1/request_response.proto +++ b/temporal/api/workflowservice/v1/request_response.proto @@ -69,7 +69,7 @@ message RegisterNamespaceRequest { repeated temporal.api.replication.v1.ClusterReplicationConfig clusters = 5; string active_cluster_name = 6; // A key-value map for any customized purpose. - map data = 7; + map data = 7; string security_token = 8; bool is_global_namespace = 9; // If unspecified (ARCHIVAL_STATE_UNSPECIFIED) then default server configuration is used.