diff options
author | Ilnaz Nizametdinov <i.nizametdinov@gmail.com> | 2022-06-06 14:52:18 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-06-06 14:52:18 +0300 |
commit | 1da68cb4313e3258a9331a48e67b71a6b9bb5706 (patch) | |
tree | f0ddbe41390766e0e08ca32640497bda44652972 | |
parent | 45e1673ad392522f44b199bde6ccfce8b71c2fac (diff) | |
download | ydb-1da68cb4313e3258a9331a48e67b71a6b9bb5706.tar.gz |
22-2: Prepare to disallow downgrades below 22-2-30 in the future KIKIMR-11675 KIKIMR-14656
REVIEW: 2511769
x-ydb-stable-ref: 28feeb9394a0dae538e22d739b97474295e580d8
-rw-r--r-- | ydb/core/driver_lib/run/version.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ydb/core/driver_lib/run/version.cpp b/ydb/core/driver_lib/run/version.cpp index 5f294e6df6..067e845a0e 100644 --- a/ydb/core/driver_lib/run/version.cpp +++ b/ydb/core/driver_lib/run/version.cpp @@ -3,14 +3,15 @@ TMaybe<NActors::TInterconnectProxyCommon::TVersionInfo> VERSION = NActors::TInterconnectProxyCommon::TVersionInfo{ // version of this binary - "22-2-border-1", + "22-2-border-2", // compatible versions; must include all compatible old ones, including this one; version verification occurs on both // peers and connection is accepted if at least one of peers accepts the version of the other peer { "21-4-border", "22-2", - "22-2-border-1" + "22-2-border-1", + "22-2-border-2" } }; |