diff options
author | Frederick Muriuki Muriithi | 2025-05-02 09:06:59 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-05-02 09:06:59 -0500 |
commit | 69c021d2f7759c61be4dd838968ab47661be88cd (patch) | |
tree | 9559d635dfd4b5c4208a710a1e48382c4898026f | |
parent | d548d840bbc6e830d44da2207041ad4448c1a148 (diff) | |
download | gn-libs-69c021d2f7759c61be4dd838968ab47661be88cd.tar.gz |
Fix stream used by function.
-rw-r--r-- | gn_libs/jobs/jobs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_libs/jobs/jobs.py b/gn_libs/jobs/jobs.py index 1f66772..6989f3e 100644 --- a/gn_libs/jobs/jobs.py +++ b/gn_libs/jobs/jobs.py @@ -41,7 +41,7 @@ def job_stdstream_outputs(conn, job_id, streamname: str): job_stderr = partial(job_stdstream_outputs, streamname="stderr") -job_stdout = partial(job_stdstream_outputs, streamname="stderr") +job_stdout = partial(job_stdstream_outputs, streamname="stdout") def job(conn: DbConnection, job_id: Union[str, uuid.UUID], fulldetails: bool = False) -> dict: |