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.
2 parents ce85cea + 5e88e52 commit 3ff8fd9Copy full SHA for 3ff8fd9
ydb/core/tx/columnshard/engines/reader/simple_reader/iterator/context.cpp
@@ -117,6 +117,9 @@ void TSpecialReadContext::RegisterActors(const NCommon::ISourcesConstructor& sou
117
}
118
119
void TSpecialReadContext::UnregisterActors() {
120
+ if (NActors::TActorSystem::IsStopped()) {
121
+ return;
122
+ }
123
if (DuplicatesManager) {
124
NActors::TActivationContext::AsActorContext().Send(DuplicatesManager, new NActors::TEvents::TEvPoison);
125
DuplicatesManager = TActorId();
0 commit comments