diff options
author | Alexander Rutkovsky <alexvru@mail.ru> | 2022-02-15 13:58:35 +0300 |
---|---|---|
committer | Alexander Rutkovsky <alexvru@mail.ru> | 2022-02-15 13:58:35 +0300 |
commit | 0d162201623457fcf30d4c290fc70b1f2833cf34 (patch) | |
tree | 4d5f897bda103e9179cd6189798b0cbc65f48252 | |
parent | 768c9b84a7d48600ccaf3999786f7e4ffed97ca8 (diff) | |
download | ydb-0d162201623457fcf30d4c290fc70b1f2833cf34.tar.gz |
Fix NodeWarden KIKIMR-13568
ref:b9669b76db61de78e15a997283e7163f08ea3689
-rw-r--r-- | ydb/core/blobstorage/nodewarden/node_warden_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/blobstorage/nodewarden/node_warden_impl.cpp b/ydb/core/blobstorage/nodewarden/node_warden_impl.cpp index be0b1f3816..8cdbfc55ed 100644 --- a/ydb/core/blobstorage/nodewarden/node_warden_impl.cpp +++ b/ydb/core/blobstorage/nodewarden/node_warden_impl.cpp @@ -242,7 +242,7 @@ void TNodeWarden::Handle(TEvBlobStorage::TEvControllerNodeServiceSetUpdate::TPtr const ui32 groupId = item.GetGroupId(); const ui32 generation = item.GetCurrentGeneration(); if (const auto it = Groups.find(groupId); it != Groups.end() && it->second.MaxKnownGeneration < generation) { - ApplyGroupInfo(groupId, generation, nullptr, true, false); + ApplyGroupInfo(groupId, generation, nullptr, false, false); } } } |