aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlnaz Nizametdinov <i.nizametdinov@gmail.com>2022-06-06 14:52:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-06-06 14:52:18 +0300
commit1da68cb4313e3258a9331a48e67b71a6b9bb5706 (patch)
treef0ddbe41390766e0e08ca32640497bda44652972
parent45e1673ad392522f44b199bde6ccfce8b71c2fac (diff)
downloadydb-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.cpp5
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"
}
};