Skip to content

Commit

Permalink
fix(lmeval): Remove stderr logging to prevent printing twice at the e…
Browse files Browse the repository at this point in the history
…nd of job
  • Loading branch information
ruivieira committed Nov 11, 2024
1 parent 4cfaac9 commit 235d444
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion controllers/lmes/driver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ func (d *driverImpl) Run() error {
}
}
toConsole(filepath.Join(d.Option.OutputPath, "stdout.log"))
toConsole(filepath.Join(d.Option.OutputPath, "stderr.log"))

// TODO: Remove to prevent printing twice when job finishes
// toConsole(filepath.Join(d.Option.OutputPath, "stderr.log"))

d.updateCompleteStatus(execErr)

Expand Down

0 comments on commit 235d444

Please sign in to comment.