diff options
author | vlmarkov <vlmarkov@yandex-team.ru> | 2022-02-10 16:46:07 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:07 +0300 |
commit | dbd3185956979f21ea16ef90c1ba4aa2d6a75fae (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/actors | |
parent | 6a382399c9a1053abd7d772ec30ca9873f7429a1 (diff) | |
download | ydb-dbd3185956979f21ea16ef90c1ba4aa2d6a75fae.tar.gz |
Restoring authorship annotation for <vlmarkov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/actors')
-rw-r--r-- | library/cpp/actors/core/executor_pool_united.cpp | 2 | ||||
-rw-r--r-- | library/cpp/actors/http/http.h | 2 | ||||
-rw-r--r-- | library/cpp/actors/interconnect/interconnect_handshake.cpp | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/actors/core/executor_pool_united.cpp b/library/cpp/actors/core/executor_pool_united.cpp index 885ccaae2d..dac6245635 100644 --- a/library/cpp/actors/core/executor_pool_united.cpp +++ b/library/cpp/actors/core/executor_pool_united.cpp @@ -546,7 +546,7 @@ namespace NActors { switch (SlowWorkerAction(wctx.PoolId)) { case WakeFast: WakeFastWorker(); - [[fallthrough]]; // no break; pass through + [[fallthrough]]; // no break; pass through case BecameIdle: wctx.Lease = wctx.Lease.NeverExpire(); wctx.PoolId = MaxPools; diff --git a/library/cpp/actors/http/http.h b/library/cpp/actors/http/http.h index 97327ea127..96c5c1ec48 100644 --- a/library/cpp/actors/http/http.h +++ b/library/cpp/actors/http/http.h @@ -505,7 +505,7 @@ public: switch (Stage) { case ERenderStage::Header: FinishHeader(); - break; + break; default: break; } diff --git a/library/cpp/actors/interconnect/interconnect_handshake.cpp b/library/cpp/actors/interconnect/interconnect_handshake.cpp index 58cd6dc639..9ede998d8e 100644 --- a/library/cpp/actors/interconnect/interconnect_handshake.cpp +++ b/library/cpp/actors/interconnect/interconnect_handshake.cpp @@ -207,7 +207,7 @@ namespace NActors { case NInterconnect::TSecureSocket::EStatus::ERROR: Fail(TEvHandshakeFail::HANDSHAKE_FAIL_PERMANENT, err, true); - [[fallthrough]]; + [[fallthrough]]; case NInterconnect::TSecureSocket::EStatus::WANT_READ: WaitPoller(true, false, "ReadEstablish"); @@ -224,7 +224,7 @@ namespace NActors { switch (const ui32 type = ev->GetTypeRewrite()) { case TEvents::TSystem::Wakeup: Fail(TEvHandshakeFail::HANDSHAKE_FAIL_TRANSIENT, Sprintf("Handshake timed out, State# %s", State.data()), true); - [[fallthrough]]; + [[fallthrough]]; case ui32(ENetwork::NodeInfo): case TEvInterconnect::EvNodeAddress: @@ -878,9 +878,9 @@ namespace NActors { Fail(TEvHandshakeFail::HANDSHAKE_FAIL_PERMANENT, Sprintf("Connection failed: %s", strerror(err)), true); } break; - - default: - break; + + default: + break; } auto it = LastLogNotice.find(PeerNodeId); |