aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-03-13 18:04:48 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-03-13 18:23:09 +0300
commitcb7eea4b6cb1664c7dc5acce263618cd64acba7b (patch)
tree9c1c42ac4de6cf72526a7866c921aa6ed9083fcb
parent2032785df7a3df5a9412b55b8f643caae397ba76 (diff)
downloadydb-cb7eea4b6cb1664c7dc5acce263618cd64acba7b.tar.gz
Intermediate changes
-rw-r--r--yt/yt/core/concurrency/delayed_executor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/yt/yt/core/concurrency/delayed_executor.cpp b/yt/yt/core/concurrency/delayed_executor.cpp
index 12606becc8..c8d1da6415 100644
--- a/yt/yt/core/concurrency/delayed_executor.cpp
+++ b/yt/yt/core/concurrency/delayed_executor.cpp
@@ -231,7 +231,7 @@ private:
{
while (true) {
auto cookie = EventCount_->PrepareWait();
- // Reset notificagtion flag before processing queues but after prepare wait.
+ // Reset notification flag before processing queues but after prepare wait.
// Otherwise notifies occurred after processing queues and before wait
// can be lost. No new notifies can happen if notify flag is true before
// prepare wait.
@@ -439,4 +439,3 @@ void TDelayedExecutor::CancelAndClear(TDelayedExecutorCookie& cookie)
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NConcurrency
-