diff options
author | mihaild <mihaild@yandex-team.ru> | 2022-02-10 16:46:59 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:59 +0300 |
commit | 246417ad6168d3f7ab4a0cf1c79ba4259f7c45ae (patch) | |
tree | 2a65611ade91c8ae2f55647107c1a11ea743abd5 /library/cpp/actors/testlib/test_runtime.cpp | |
parent | 5598c5e7bc7619bd51d87fea7b880b7788ad0b47 (diff) | |
download | ydb-246417ad6168d3f7ab4a0cf1c79ba4259f7c45ae.tar.gz |
Restoring authorship annotation for <mihaild@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/actors/testlib/test_runtime.cpp')
-rw-r--r-- | library/cpp/actors/testlib/test_runtime.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp index 6fa25b9965..a69c2f5cf7 100644 --- a/library/cpp/actors/testlib/test_runtime.cpp +++ b/library/cpp/actors/testlib/test_runtime.cpp @@ -735,7 +735,7 @@ namespace NActors { } node->LocalServicesActors[actorId] = cmd.Actor; - node->LocalServices.push_back(std::make_pair(actorId, cmd)); + node->LocalServices.push_back(std::make_pair(actorId, cmd)); } void TTestActorRuntimeBase::InitNodes() { @@ -1082,7 +1082,7 @@ namespace NActors { auto mboxId = TEventMailboxId(edgeActor.NodeId(), edgeActor.Hint()); auto storeIt = Store.find(mboxId); Y_VERIFY(storeIt == Store.end()); - storeIt = Store.insert(std::make_pair(mboxId, new TEventMailBox)).first; + storeIt = Store.insert(std::make_pair(mboxId, new TEventMailBox)).first; storeIt->second->PushFront(events); if (!events.empty()) HasEvents = true; @@ -1113,10 +1113,10 @@ namespace NActors { for (auto mailboxId : options.OnlyMailboxes) { auto it = Mailboxes.find(mailboxId); if (it == Mailboxes.end()) { - it = Mailboxes.insert(std::make_pair(mailboxId, new TEventMailBox())).first; + it = Mailboxes.insert(std::make_pair(mailboxId, new TEventMailBox())).first; } - restrictedMailboxes.insert(std::make_pair(mailboxId, it->second)); + restrictedMailboxes.insert(std::make_pair(mailboxId, it->second)); } TAutoPtr<TTempEdgeEventsCaptor> tempEdgeEventsCaptor; @@ -1720,7 +1720,7 @@ namespace NActors { auto mboxId = TEventMailboxId(nodeId, hint); auto it = Mailboxes.find(mboxId); if (it == Mailboxes.end()) { - it = Mailboxes.insert(std::make_pair(mboxId, new TEventMailBox())).first; + it = Mailboxes.insert(std::make_pair(mboxId, new TEventMailBox())).first; } return *it->second; |