diff options
author | Frederick Muriuki Muriithi | 2025-03-25 13:03:16 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-03-25 13:16:16 -0500 |
commit | 03cc1b298e03879c41b44436fcc511c1a10938e8 (patch) | |
tree | 8cdd9aee5d4480f2f7b7e577fa7e5af931bf1efd /uploader/phenotypes | |
parent | a4a63a023a7ad348de0211bf69e3d4e7430023aa (diff) | |
download | gn-uploader-03cc1b298e03879c41b44436fcc511c1a10938e8.tar.gz |
Run job with unbuffered outputs.
Diffstat (limited to 'uploader/phenotypes')
-rw-r--r-- | uploader/phenotypes/views.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/uploader/phenotypes/views.py b/uploader/phenotypes/views.py index ab76cfb..430a3fb 100644 --- a/uploader/phenotypes/views.py +++ b/uploader/phenotypes/views.py @@ -970,9 +970,8 @@ def edit_upload_phenotype_data(# pylint: disable=[unused-argument] gnlibs_jobs.initialise_job(conn, job_id, [ - sys.executable, - "-m", - "scripts.phenotypes_bulk_edit", + sys.executable, "-u", + "-m", "scripts.phenotypes_bulk_edit", jobs_db, str(job_id) ], |