Skip to content

Commit

Permalink
NBS-312: temporarily revert call to TrySwitchEndpoint (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
budevg authored Feb 1, 2024
1 parent ee1ea02 commit f53ba9c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions cloud/blockstore/libs/endpoints/endpoint_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,9 +672,12 @@ void TEndpointManager::TrySwitchEndpoint(const TString& diskId)

void TEndpointManager::OnVolumeConnectionEstablished(const TString& diskId)
{
Executor->ExecuteSimple([this, diskId] () {
return TrySwitchEndpoint(diskId);
});
Y_UNUSED(diskId);

// TODO: NBS-312 safely call TrySwitchEndpoint
// Executor->ExecuteSimple([this, diskId] () {
// return TrySwitchEndpoint(diskId);
// });
}

} // namespace
Expand Down

0 comments on commit f53ba9c

Please sign in to comment.