diff options
author | innokentii <innokentii@yandex-team.com> | 2023-06-28 17:56:47 +0300 |
---|---|---|
committer | innokentii <innokentii@yandex-team.com> | 2023-06-28 17:56:47 +0300 |
commit | cbc2a9337558aababc76098ae1a8ecaa6e0256f2 (patch) | |
tree | e0d33262cc6a47dd6b8fc0b9ec99d279026dd902 | |
parent | 87e222f0b9bc9a9323ee6492915b4170053704ce (diff) | |
download | ydb-cbc2a9337558aababc76098ae1a8ecaa6e0256f2.tar.gz |
Fix back compatibility in console
fix incompat
-rw-r--r-- | ydb/core/protos/console_config.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ydb/core/protos/console_config.proto b/ydb/core/protos/console_config.proto index 310beb5917..900978eadb 100644 --- a/ydb/core/protos/console_config.proto +++ b/ydb/core/protos/console_config.proto @@ -275,7 +275,8 @@ message TGetAllConfigsRequest { } message TGetAllConfigsResponse { - optional Ydb.DynamicConfig.GetConfigResult Response = 1; + reserved 1; + optional Ydb.DynamicConfig.GetConfigResult Response = 2; } message TGetNodeLabelsRequest { |