Skip to content

Commit e00875e

Browse files
committed
Update stdout/stderr for jobmon
1 parent 0cca845 commit e00875e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

66
## [Unreleased]
7+
### Fixed
8+
- Update stdout/stderr keys for jobmon
79

810
## [1.0.17] - 2024-12-30
911
### Fixed

src/rra_tools/jobmon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ def run_parallel( # noqa: PLR0913
294294
raise KeyError(msg)
295295
log_root = Path(task_args["output-dir"])
296296
log_dir = make_log_dir(log_root)
297-
task_resources["stdout"] = str(log_dir / "output")
298-
task_resources["stderr"] = str(log_dir / "error")
297+
task_resources["standard_output"] = str(log_dir / "output")
298+
task_resources["standard_error"] = str(log_dir / "error")
299299

300300
tool = get_jobmon_tool(workflow_name=task_name)
301301
workflow = tool.create_workflow(

0 commit comments

Comments
 (0)