diff options
author | pogorelov <pogorelov@yandex-team.com> | 2023-10-04 17:36:38 +0300 |
---|---|---|
committer | pogorelov <pogorelov@yandex-team.com> | 2023-10-04 18:55:52 +0300 |
commit | cb0c2e3be302e583ff56fab49b2f09ae42dbe578 (patch) | |
tree | 7a5e95aa743ca58f7726d9e6d9b914dee597b0ac /yt | |
parent | f09b8bf859a6a17ef94825f878606458b2488e71 (diff) | |
download | ydb-cb0c2e3be302e583ff56fab49b2f09ae42dbe578.tar.gz |
Cosmetics
Diffstat (limited to 'yt')
-rw-r--r-- | yt/cpp/mapreduce/interface/operation.h | 2 | ||||
-rw-r--r-- | yt/yt/client/scheduler/public.h | 1 | ||||
-rw-r--r-- | yt/yt/core/misc/backoff_strategy_api.h | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/yt/cpp/mapreduce/interface/operation.h b/yt/cpp/mapreduce/interface/operation.h index 5a20809086..e7f1efc25b 100644 --- a/yt/cpp/mapreduce/interface/operation.h +++ b/yt/cpp/mapreduce/interface/operation.h @@ -533,7 +533,7 @@ struct TOperationSpecBase /// Coefficient defining how much resources operation gets relative to its siblings in the same pool. FLUENT_FIELD_OPTION(double, Weight); - /// @breif Pool tree list that operation will use. + /// @brief Pool tree list that operation will use. FLUENT_OPTIONAL_VECTOR_FIELD_ENCAPSULATED(TString, PoolTree); /// How much resources can be consumed by operation. diff --git a/yt/yt/client/scheduler/public.h b/yt/yt/client/scheduler/public.h index f7189b971d..6e9fa62d1b 100644 --- a/yt/yt/client/scheduler/public.h +++ b/yt/yt/client/scheduler/public.h @@ -125,6 +125,7 @@ DEFINE_ENUM(EAbortReason, ((OperationFinished) ( 46)) ((JobMemoryThrashing) ( 47)) ((InterruptionUnsupported) ( 48)) + ((Abandoned) ( 49)) ((SchedulingFirst) (100)) ((SchedulingTimeout) (101)) ((SchedulingResourceOvercommit) (102)) diff --git a/yt/yt/core/misc/backoff_strategy_api.h b/yt/yt/core/misc/backoff_strategy_api.h index 5be149a32c..21d9a32b4f 100644 --- a/yt/yt/core/misc/backoff_strategy_api.h +++ b/yt/yt/core/misc/backoff_strategy_api.h @@ -10,7 +10,7 @@ struct TExponentialBackoffOptions; struct TConstantBackoffOptions; DECLARE_REFCOUNTED_CLASS(TSerializableExponentialBackoffOptions) -DECLARE_REFCOUNTED_CLASS(TSerializableConstantlBackoffOptions) +DECLARE_REFCOUNTED_CLASS(TSerializableConstantBackoffOptions) class TBackoffStrategy; |