diff --git a/ydb/core/tx/columnshard/engines/reader/simple_reader/iterator/context.cpp b/ydb/core/tx/columnshard/engines/reader/simple_reader/iterator/context.cpp index b53d69b9c15f..2e9e43622c67 100644 --- a/ydb/core/tx/columnshard/engines/reader/simple_reader/iterator/context.cpp +++ b/ydb/core/tx/columnshard/engines/reader/simple_reader/iterator/context.cpp @@ -117,6 +117,9 @@ void TSpecialReadContext::RegisterActors(const NCommon::ISourcesConstructor& sou } void TSpecialReadContext::UnregisterActors() { + if (NActors::TActorSystem::IsStopped()) { + return; + } if (DuplicatesManager) { NActors::TActivationContext::AsActorContext().Send(DuplicatesManager, new NActors::TEvents::TEvPoison); DuplicatesManager = TActorId();