diff options
author | kruall <kruall@ydb.tech> | 2022-12-21 11:25:06 +0300 |
---|---|---|
committer | kruall <kruall@ydb.tech> | 2022-12-21 11:25:06 +0300 |
commit | d4a4e5229e5236adce08598a61300903e51744ea (patch) | |
tree | c342f2561d8e6cce97901c79287828d4849d2372 | |
parent | 7a097007f40b87f60b2881c070a57cfc5b7614ac (diff) | |
download | ydb-d4a4e5229e5236adce08598a61300903e51744ea.tar.gz |
Send with continuous execution msg after registration,
-rw-r--r-- | library/cpp/actors/core/actor.cpp | 2 |
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 { |