aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorapachee <apachee@yandex-team.com>2024-06-17 11:43:56 +0300
committerapachee <apachee@yandex-team.com>2024-06-17 11:57:55 +0300
commit039332cef2449f293e711bbf2442f39fd69b70f8 (patch)
tree05ae9d91e0bc13a5c0a1550006f8e2775ece4cf3
parentc50802880c17b75f08e5de00e018bd428a363675 (diff)
downloadydb-039332cef2449f293e711bbf2442f39fd69b70f8.tar.gz
YT-21308: Minor codestyle tweak
Fix indent a6a3500f712f343a6127243f63bb9d798e358fb3
-rw-r--r--yt/cpp/mapreduce/client/operation.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/cpp/mapreduce/client/operation.cpp b/yt/cpp/mapreduce/client/operation.cpp
index 496b2f5723..f4df2e2dd7 100644
--- a/yt/cpp/mapreduce/client/operation.cpp
+++ b/yt/cpp/mapreduce/client/operation.cpp
@@ -753,9 +753,9 @@ void BuildUserJobFluently(
})
.Item("profilers")
.BeginList()
- .DoFor(userJobSpec.JobProfilers_, [&] (TFluentList list, const auto& jobProfiler) {
- list.Item().Value(BuildJobProfilerSpec(jobProfiler));
- })
+ .DoFor(userJobSpec.JobProfilers_, [&] (TFluentList list, const auto& jobProfiler) {
+ list.Item().Value(BuildJobProfilerSpec(jobProfiler));
+ })
.EndList()
.Item("redirect_stdout_to_stderr").Value(preparer.ShouldRedirectStdoutToStderr());
}