Skip to content

Commit

Permalink
Deprecate rpc info_stream(v1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurotych committed Nov 22, 2024
1 parent b73fc84 commit e7daf98
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/service/mobile_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e7daf98

Please sign in to comment.