We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba3545e commit 02983a4Copy full SHA for 02983a4
localfarm/localFarmBackend.py
@@ -359,11 +359,9 @@ def startTask(self, task: Task):
359
log.write(f"# ========== Starting task {task.tid} at {task.started_at.isoformat()}" \
360
f" (command=\"{task.command}\") ==========\n")
361
log.write(f"# process_env:\n")
362
- for _k, _v in process_env.items():
+ log.write(f"# Additional env variables:\n")
363
+ for _k, _v in additional_env.items():
364
log.write(f"# - {str(_k)}={str(_v)}\n")
- # log.write(f"# Additional env variables:\n")
365
- # for _k, _v in additional_env.items():
366
- # log.write(f"# - {str(_k)}={str(_v)}\n")
367
log.write(f"\n")
368
task.process = subprocess.Popen(
369
task.command,
0 commit comments