We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e686036 commit d525341Copy full SHA for d525341
ydb/core/blobstorage/nodewarden/distconf_binding.cpp
@@ -144,7 +144,9 @@ namespace NKikimr::NStorage {
144
}
145
146
const auto it = SubscribedSessions.find(nodeId);
147
- Y_ABORT_UNLESS(it != SubscribedSessions.end());
+ if (it == SubscribedSessions.end()) {
148
+ return; // this may be a race with unsubscription
149
+ }
150
Y_ABORT_UNLESS(!it->second || it->second == ev->Sender);
151
SubscribedSessions.erase(it);
152
0 commit comments