From e7daf98688ddc0edb819da19b3d85a7b1a974852 Mon Sep 17 00:00:00 2001 From: Anatolii Kurotych Date: Fri, 22 Nov 2024 17:12:53 +0200 Subject: [PATCH] Deprecate rpc info_stream(v1) --- src/service/mobile_config.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/service/mobile_config.proto b/src/service/mobile_config.proto index 017f7f65..d12c3869 100644 --- a/src/service/mobile_config.proto +++ b/src/service/mobile_config.proto @@ -348,7 +348,9 @@ service gateway { returns (stream gateway_info_stream_res_v1); // Get a stream of gateway info rpc info_stream(gateway_info_stream_req_v1) - returns (stream gateway_info_stream_res_v1); + returns (stream gateway_info_stream_res_v1) { + option deprecated = true; + } // Get a stream of gateway info (V2) rpc info_stream_v2(gateway_info_stream_req_v2) returns (stream gateway_info_stream_res_v2);