diff options
author | babenko <babenko@yandex-team.com> | 2024-11-29 18:15:35 +0300 |
---|---|---|
committer | babenko <babenko@yandex-team.com> | 2024-11-29 18:43:23 +0300 |
commit | f3531eaf37b153f0f3829cf63c82a1928d4d9122 (patch) | |
tree | 7aef25c95382be3cef470346c70866ff4fc4ecd6 | |
parent | 2aee7cda6c758679145563340ff94fc652670ea1 (diff) | |
download | ydb-f3531eaf37b153f0f3829cf63c82a1928d4d9122.tar.gz |
Fix typo
commit_hash:01730f5887c8bccb0deb1393bfd15f867792ce5f
-rw-r--r-- | yt/yt/core/concurrency/nonblocking_batcher.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt/yt/core/concurrency/nonblocking_batcher.h b/yt/yt/core/concurrency/nonblocking_batcher.h index 5681f27b13..841faf590c 100644 --- a/yt/yt/core/concurrency/nonblocking_batcher.h +++ b/yt/yt/core/concurrency/nonblocking_batcher.h @@ -8,7 +8,7 @@ namespace NYT::NConcurrency { //////////////////////////////////////////////////////////////////////////////// -DEFINE_ENUM(ETNonblockingBatcherTimerState, +DEFINE_ENUM(ENonblockingBatcherTimerState, (Initial) (Started) (Finished) @@ -97,7 +97,7 @@ public: std::vector<TBatch> Drain(); private: - using ETimerState = ETNonblockingBatcherTimerState; + using ETimerState = ENonblockingBatcherTimerState; TBatchLimiter BatchLimiter_; TDuration BatchDuration_; |