diff options
| author | rp-1 <[email protected]> | 2025-09-04 23:16:45 +0300 |
|---|---|---|
| committer | rp-1 <[email protected]> | 2025-09-04 23:32:34 +0300 |
| commit | 4942f1a013ee74eaac8fab28707dbb98ff43d30d (patch) | |
| tree | 618fc134fd7ae8c854cc1cb995ea80060590d9b9 /yt/cpp/mapreduce/client/operation_preparer.cpp | |
| parent | 22915055c504c0226abb8570f8d5f4543b44001e (diff) | |
YT-25583: Fix appending debug options to command jobs
Check if command job when appending debug options
commit_hash:b9bb785bc0c7f25f175b41935a492f85e5a57562
Diffstat (limited to 'yt/cpp/mapreduce/client/operation_preparer.cpp')
| -rw-r--r-- | yt/cpp/mapreduce/client/operation_preparer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/client/operation_preparer.cpp b/yt/cpp/mapreduce/client/operation_preparer.cpp index 2d80e6b1c5c..34196b63963 100644 --- a/yt/cpp/mapreduce/client/operation_preparer.cpp +++ b/yt/cpp/mapreduce/client/operation_preparer.cpp @@ -464,7 +464,7 @@ bool TJobPreparer::ShouldRedirectStdoutToStderr() const bool TJobPreparer::ShouldAppendDebugOptions() const { - return OperationPreparer_.GetContext().Config->AppendDebugOptions; + return !IsCommandJob_ && OperationPreparer_.GetContext().Config->AppendDebugOptions; } TString TJobPreparer::GetFileStorage() const |
