File tree 1 file changed +11
-4
lines changed
ydb/core/driver_lib/version
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,15 @@ TCompatibilityInfo::TCompatibilityInfo() {
27
27
// ///////////////////////////////////////////////////////
28
28
29
29
auto current = TCurrentConstructor{
30
- .Application = " ydb"
30
+ .Application = " ydb" ,
31
+ .Version = TVersionConstructor{
32
+ .Year = 24 ,
33
+ .Major = 1 ,
34
+ }
31
35
}.ToPB ();
32
36
33
- // bool success = CompleteFromTag(current);
37
+ bool success = CompleteFromTag (current);
38
+ Y_UNUSED (success);
34
39
// Y_ABORT_UNLESS(success);
35
40
36
41
CurrentCompatibilityInfo.CopyFrom (current);
@@ -76,12 +81,14 @@ const TStored* TCompatibilityInfo::GetDefault(TComponentId componentId) const {
76
81
// obsolete version control
77
82
TMaybe<NActors::TInterconnectProxyCommon::TVersionInfo> VERSION = NActors::TInterconnectProxyCommon::TVersionInfo{
78
83
// version of this binary
79
- " trunk " ,
84
+ " stable-24-1 " ,
80
85
81
86
// compatible versions; must include all compatible old ones, including this one; version verification occurs on both
82
87
// peers and connection is accepted if at least one of peers accepts the version of the other peer
83
88
{
84
- " trunk"
89
+ " stable-23-3" ,
90
+ " stable-23-4" ,
91
+ " stable-24-1"
85
92
}
86
93
};
87
94
You can’t perform that action at this time.
0 commit comments