Skip to content

Commit

Permalink
Merge pull request #563 from cehbrecht/fix-scheduler-output
Browse files Browse the repository at this point in the history
fix output stream of scheduler
  • Loading branch information
cehbrecht committed Dec 17, 2020
2 parents a2008fd + 7d601b1 commit effc9cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pywps/processing/scheduler.py
Expand Up @@ -54,7 +54,8 @@ def run_job(self):
drmaa_native_specification = config.get_config_value('processing', 'drmaa_native_specification')
if drmaa_native_specification:
jt.nativeSpecification = drmaa_native_specification
jt.joinFiles = True
jt.joinFiles = False
jt.errorPath = ":{}".format(os.path.join(self.job.workdir, "job-error.txt"))
jt.outputPath = ":{}".format(os.path.join(self.job.workdir, "job-output.txt"))
# run job
jobid = session.runJob(jt)
Expand Down

0 comments on commit effc9cd

Please sign in to comment.