aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkruall <kruall@ydb.tech>2022-12-21 11:25:06 +0300
committerkruall <kruall@ydb.tech>2022-12-21 11:25:06 +0300
commitd4a4e5229e5236adce08598a61300903e51744ea (patch)
treec342f2561d8e6cce97901c79287828d4849d2372
parent7a097007f40b87f60b2881c070a57cfc5b7614ac (diff)
downloadydb-d4a4e5229e5236adce08598a61300903e51744ea.tar.gz
Send with continuous execution msg after registration,
-rw-r--r--library/cpp/actors/core/actor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/actors/core/actor.cpp b/library/cpp/actors/core/actor.cpp
index 8863205860..e86539ce10 100644
--- a/library/cpp/actors/core/actor.cpp
+++ b/library/cpp/actors/core/actor.cpp
@@ -26,7 +26,7 @@ namespace NActors {
void IActor::Registered(TActorSystem* sys, const TActorId& owner) {
// fallback to legacy method, do not use it anymore
if (auto eh = AfterRegister(SelfId(), owner))
- sys->Send(eh);
+ sys->SendWithContinuousExecution(eh);
}
void IActor::Describe(IOutputStream &out) const noexcept {