diff options
| author | hiddenpath <[email protected]> | 2024-12-14 16:19:59 +0300 |
|---|---|---|
| committer | hiddenpath <[email protected]> | 2024-12-14 16:51:13 +0300 |
| commit | aa1021b694481614165db9cf5e5b8c7687bdf8b5 (patch) | |
| tree | 3cac1df9bf2eb8d1791c9dc4a6cc9f8206aa321b /yt/cpp/mapreduce/client/structured_table_formats.cpp | |
| parent | e70ba282832040eb9e16eb4049db3b98d1959050 (diff) | |
Remove excessive mutationId argument
commit_hash:4f4f0d451f00b683572fc77efbae9119e2ee40de
Diffstat (limited to 'yt/cpp/mapreduce/client/structured_table_formats.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/client/structured_table_formats.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/yt/cpp/mapreduce/client/structured_table_formats.cpp b/yt/cpp/mapreduce/client/structured_table_formats.cpp index a2f47af3aeb..72b76e6b805 100644 --- a/yt/cpp/mapreduce/client/structured_table_formats.cpp +++ b/yt/cpp/mapreduce/client/structured_table_formats.cpp @@ -75,8 +75,8 @@ TMaybe<TNode> GetTableFormat( auto exists = NDetail::RequestWithRetry<bool>( retryPolicy->CreatePolicyForGenericRequest(), - [&rawClient, &transactionId, &formatPath] (TMutationId& mutationId) { - return rawClient->Exists(mutationId, transactionId, formatPath); + [&rawClient, &transactionId, &formatPath] (TMutationId /*mutationId*/) { + return rawClient->Exists(transactionId, formatPath); }); if (!exists) { return TMaybe<TNode>(); @@ -84,8 +84,8 @@ TMaybe<TNode> GetTableFormat( auto format = NDetail::RequestWithRetry<TMaybe<TNode>>( retryPolicy->CreatePolicyForGenericRequest(), - [&rawClient, &transactionId, &formatPath] (TMutationId& mutationId) { - return rawClient->Get(mutationId, transactionId, formatPath); + [&rawClient, &transactionId, &formatPath] (TMutationId /*mutationId*/) { + return rawClient->Get(transactionId, formatPath); }); if (format.Get()->AsString() != "yamred_dsv") { return TMaybe<TNode>(); |
