diff options
author | Frederick Muriuki Muriithi | 2025-04-21 13:23:01 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-04-21 13:23:01 -0500 |
commit | d548d840bbc6e830d44da2207041ad4448c1a148 (patch) | |
tree | d954f6b0cad6e09c8b8331eac87df335053c3a1e | |
parent | 78577571c3d1266ad66a690d9f6fbe8ff2ad2c52 (diff) | |
download | gn-libs-d548d840bbc6e830d44da2207041ad4448c1a148.tar.gz |
-rw-r--r-- | gn_libs/jobs/launcher.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn_libs/jobs/launcher.py b/gn_libs/jobs/launcher.py index 5edcd07..0b14f98 100644 --- a/gn_libs/jobs/launcher.py +++ b/gn_libs/jobs/launcher.py @@ -40,6 +40,7 @@ def run_job(conn, job, outputs_directory: Path): os.remove(stdout_file) os.remove(stderr_file) + jobs.update_metadata(conn, job_id, "status", "completed") return process.poll() except: jobs.update_metadata(conn, job_id, "status", "error") |