From 326a7c923037ea8bc109df07e7c2a8b7ff57e299 Mon Sep 17 00:00:00 2001 From: Michael Youssef Date: Wed, 26 Nov 2025 10:40:48 -0800 Subject: [PATCH 1/2] Enable replication separately from namespace replication --- temporal/api/operatorservice/v1/request_response.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/temporal/api/operatorservice/v1/request_response.proto b/temporal/api/operatorservice/v1/request_response.proto index 48e7d71b5..0b7294876 100644 --- a/temporal/api/operatorservice/v1/request_response.proto +++ b/temporal/api/operatorservice/v1/request_response.proto @@ -68,6 +68,8 @@ message AddOrUpdateRemoteClusterRequest { // Frontend HTTP Address is a cross cluster accessible address for HTTP traffic. This field is optional. If not provided // on update, the existing HTTP address will be removed. string frontend_http_address = 3; + // is_replication_enabled controls whether replication streams are active. + bool is_replication_enabled = 4; } message AddOrUpdateRemoteClusterResponse { From 9d95b72fbce0640a42979376f09e12a00667d912 Mon Sep 17 00:00:00 2001 From: michaely520 Date: Mon, 1 Dec 2025 08:30:25 -0800 Subject: [PATCH 2/2] Update temporal/api/operatorservice/v1/request_response.proto Co-authored-by: Roey Berman --- temporal/api/operatorservice/v1/request_response.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporal/api/operatorservice/v1/request_response.proto b/temporal/api/operatorservice/v1/request_response.proto index 0b7294876..b4043b6d8 100644 --- a/temporal/api/operatorservice/v1/request_response.proto +++ b/temporal/api/operatorservice/v1/request_response.proto @@ -68,7 +68,7 @@ message AddOrUpdateRemoteClusterRequest { // Frontend HTTP Address is a cross cluster accessible address for HTTP traffic. This field is optional. If not provided // on update, the existing HTTP address will be removed. string frontend_http_address = 3; - // is_replication_enabled controls whether replication streams are active. + // Controls whether replication streams are active. bool is_replication_enabled = 4; }