diff options
author | hiddenpath <hiddenpath@yandex-team.com> | 2024-12-17 18:57:33 +0300 |
---|---|---|
committer | hiddenpath <hiddenpath@yandex-team.com> | 2024-12-17 19:37:06 +0300 |
commit | 82bd12196bba9102174e22e23d9fcce5897bdf76 (patch) | |
tree | 1750f28771b73c26d91007ea3b1518f7ffb453f6 /yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp | |
parent | 174f410da8f66e7525c017656f485eb45a978a09 (diff) | |
download | ydb-82bd12196bba9102174e22e23d9fcce5897bdf76.tar.gz |
[yt/cpp/mapreduce] YT-23616: Move some http methods to THttpRawClient
commit_hash:4e2845ba995aaf7bbae2c24735ceb099a116c89d
Diffstat (limited to 'yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp')
-rw-r--r-- | yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp b/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp index 8f9e79de77..8474bd0edc 100644 --- a/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp +++ b/yt/cpp/mapreduce/raw_client/rpc_parameters_serialization.cpp @@ -304,12 +304,11 @@ TNode SerializeParamsForUnlock( const TTransactionId& transactionId, const TString& pathPrefix, const TYPath& path, - const TUnlockOptions& options) + const TUnlockOptions& /*options*/) { TNode result; SetTransactionIdParam(&result, transactionId); SetPathParam(&result, pathPrefix, path); - Y_UNUSED(options); return result; } @@ -449,11 +448,10 @@ TNode SerializeParamsForSuspendOperation( TNode SerializeParamsForResumeOperation( const TOperationId& operationId, - const TResumeOperationOptions& options) + const TResumeOperationOptions& /*options*/) { TNode result; SetOperationIdParam(&result, operationId); - Y_UNUSED(options); return result; } @@ -863,9 +861,8 @@ TNode SerializeParamsForGetTabletInfos( const TString& pathPrefix, const TYPath& path, const TVector<int>& tabletIndexes, - const TGetTabletInfosOptions& options) + const TGetTabletInfosOptions& /*options*/) { - Y_UNUSED(options); TNode result; SetPathParam(&result, pathPrefix, path); result["tablet_indexes"] = TNode::CreateList(); |