diff options
author | svc <svc@yandex-team.ru> | 2022-02-10 16:50:22 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:22 +0300 |
commit | eb48c66d105713a2574106c798c8b6387643f5c7 (patch) | |
tree | a8ae7251c406e439a127d196625b656180cb430e /library/cpp/actors/testlib | |
parent | 50dee42411ef99e9d2e8a1fa4138bf1774932a74 (diff) | |
download | ydb-eb48c66d105713a2574106c798c8b6387643f5c7.tar.gz |
Restoring authorship annotation for <svc@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/actors/testlib')
-rw-r--r-- | library/cpp/actors/testlib/test_runtime.cpp | 16 | ||||
-rw-r--r-- | library/cpp/actors/testlib/test_runtime.h | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp index 6fa25b99656..d5ecaefe6a2 100644 --- a/library/cpp/actors/testlib/test_runtime.cpp +++ b/library/cpp/actors/testlib/test_runtime.cpp @@ -61,7 +61,7 @@ namespace NActors { ActorSystemMonotonic = nullptr; } - void TTestActorRuntimeBase::TNodeDataBase::Stop() { + void TTestActorRuntimeBase::TNodeDataBase::Stop() { if (Poller) Poller->Stop(); @@ -77,11 +77,11 @@ namespace NActors { Poller.Reset(); } - TTestActorRuntimeBase::TNodeDataBase::~TNodeDataBase() { - Stop(); - } - + TTestActorRuntimeBase::TNodeDataBase::~TNodeDataBase() { + Stop(); + } + class TTestActorRuntimeBase::TEdgeActor : public TActor<TEdgeActor> { public: static constexpr EActivityType ActorActivityType() { @@ -1660,9 +1660,9 @@ namespace NActors { common->Settings.Handshake = TDuration::Max(); } - common->ClusterUUID = ClusterUUID; - common->AcceptUUID = {ClusterUUID}; - + common->ClusterUUID = ClusterUUID; + common->AcceptUUID = {ClusterUUID}; + for (ui32 proxyNodeIndex = 0; proxyNodeIndex < NodeCount; ++proxyNodeIndex) { if (proxyNodeIndex == nodeIndex) continue; diff --git a/library/cpp/actors/testlib/test_runtime.h b/library/cpp/actors/testlib/test_runtime.h index 26e3b45c984..ffbf475f9a7 100644 --- a/library/cpp/actors/testlib/test_runtime.h +++ b/library/cpp/actors/testlib/test_runtime.h @@ -538,7 +538,7 @@ namespace NActors { protected: struct TNodeDataBase: public TThrRefBase { TNodeDataBase(); - void Stop(); + void Stop(); virtual ~TNodeDataBase(); virtual ui64 GetLoggerPoolId() const { return 0; |