From 749e7b8bae62d854694c5e0543048bf2f8b9ca36 Mon Sep 17 00:00:00 2001 From: Evgeny Zverev Date: Mon, 29 Jul 2024 16:16:41 +0300 Subject: [PATCH 1/2] Fix ES_LIMITER enum value to restore compatibility with main --- ydb/core/base/events.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/core/base/events.h b/ydb/core/base/events.h index e577f1375aed..a8210a878269 100644 --- a/ydb/core/base/events.h +++ b/ydb/core/base/events.h @@ -172,7 +172,7 @@ struct TKikimrEvents : TEvents { ES_GRAPH = 4249, ES_REPLICATION_SERVICE = 4250, ES_CHANGE_EXCHANGE = 4251, - ES_LIMITER = 4252, + ES_LIMITER = 4258, }; }; From bee7e07dc111a0ba7ac041781c4fb571220425a5 Mon Sep 17 00:00:00 2001 From: Evgeny Zverev Date: Tue, 30 Jul 2024 23:17:16 +0300 Subject: [PATCH 2/2] declare a gap --- ydb/core/base/events.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ydb/core/base/events.h b/ydb/core/base/events.h index a8210a878269..ae0b67cee5cb 100644 --- a/ydb/core/base/events.h +++ b/ydb/core/base/events.h @@ -172,6 +172,7 @@ struct TKikimrEvents : TEvents { ES_GRAPH = 4249, ES_REPLICATION_SERVICE = 4250, ES_CHANGE_EXCHANGE = 4251, + // skipped 4252-4257, defined in stable-24-3 ES_LIMITER = 4258, }; };