diff options
| author | kruall <[email protected]> | 2022-12-21 11:25:06 +0300 | 
|---|---|---|
| committer | kruall <[email protected]> | 2022-12-21 11:25:06 +0300 | 
| commit | d4a4e5229e5236adce08598a61300903e51744ea (patch) | |
| tree | c342f2561d8e6cce97901c79287828d4849d2372 /library/cpp | |
| parent | 7a097007f40b87f60b2881c070a57cfc5b7614ac (diff) | |
Send with continuous execution msg after registration,
Diffstat (limited to 'library/cpp')
| -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 8863205860f..e86539ce10d 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 { | 
