summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Efimov <[email protected]>2022-06-21 11:47:27 +0300
committerAlexey Efimov <[email protected]>2022-06-21 11:47:27 +0300
commitd49283ffe563f4a1f20deef863a18f8de6a275e8 (patch)
tree4939f315dae3b4d10ac3dfca93ab3d0b4f17e909
parent444fb65b1a79c2c2ce6753cdfe18372203e1b44f (diff)
workaround for double-stops of actor system KIKIMR-14742
ref:d624f3fd662cc8e3f02bc89239856ace72e7f895
-rw-r--r--ydb/core/mon/async_http_mon.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/core/mon/async_http_mon.cpp b/ydb/core/mon/async_http_mon.cpp
index 0f9ce2e28dc..1337b71f1d0 100644
--- a/ydb/core/mon/async_http_mon.cpp
+++ b/ydb/core/mon/async_http_mon.cpp
@@ -706,6 +706,7 @@ void TAsyncHttpMon::Stop() {
ActorSystem->Send(NodeProxyServiceActorId, new TEvents::TEvPoisonPill);
ActorSystem->Send(HttpMonServiceActorId, new TEvents::TEvPoisonPill);
ActorSystem->Send(HttpProxyActorId, new TEvents::TEvPoisonPill);
+ ActorSystem = nullptr;
}
}