about summary refs log tree commit diff
path: root/gn_libs
diff options
context:
space:
mode:
Diffstat (limited to 'gn_libs')
-rw-r--r--gn_libs/jobs/jobs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_libs/jobs/jobs.py b/gn_libs/jobs/jobs.py
index a31c036..4da05a8 100644
--- a/gn_libs/jobs/jobs.py
+++ b/gn_libs/jobs/jobs.py
@@ -116,7 +116,7 @@ def launch_job(
               "w",
               encoding="utf-8") as errorfile:
         subprocess.Popen( # pylint: disable=[consider-using-with]
-            [sys.executable, "-m", worker_manager, sqlite3_url, job_id],
+            [sys.executable, "-u", "-m", worker_manager, sqlite3_url, job_id],
             stderr=errorfile,
             env={"PYTHONPATH": ":".join(sys.path)})