diff options
author | Frederick Muriuki Muriithi | 2022-08-05 10:10:56 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-08-05 10:10:56 +0300 |
commit | 19c376c4b60592f4bba0e26952faa3a71b6f5641 (patch) | |
tree | 0916ef296a57bb450102093429422953d92c009e /qc_app/dbinsert.py | |
parent | 3da6848381b6103fbb58eeab8d7051cba0bded58 (diff) | |
download | gn-uploader-19c376c4b60592f4bba0e26952faa3a71b6f5641.tar.gz |
Update job status. Display stdout and stderr outputs
* Display the status of the job, as it is running
* Display STDERR output if an error occurs
* Display STDOUT output as job is running and on successful completion
of the job
Diffstat (limited to 'qc_app/dbinsert.py')
-rw-r--r-- | qc_app/dbinsert.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qc_app/dbinsert.py b/qc_app/dbinsert.py index 70aeb6d..589ac75 100644 --- a/qc_app/dbinsert.py +++ b/qc_app/dbinsert.py @@ -396,7 +396,10 @@ def insert_status(job_id: str): job = jobs.job(rconn, job_id) if job: - if job["status"] == "success": + job_status = job["status"] + if job_status == "success": return render_template("insert_success.html", job=job) + if job["status"] == "error": + return render_template("insert_error.html", job=job) return render_template("insert_progress.html", job=job) return render_template("no_such_job.html", job_id=job_id), 400 |