Skip to content

Commit

Permalink
Merge pull request #13140 from milljm/fix-RunPBS-13139
Browse files Browse the repository at this point in the history
Fix bad call to readOutput
  • Loading branch information
permcody committed Mar 27, 2019
2 parents c2e6dba + acede27 commit fdf5d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/TestHarness/schedulers/RunPBS.py
Expand Up @@ -62,7 +62,7 @@ def hasTimedOutOrFailed(self, job_data):
output_file = job_data.json_data.get(job_data.job_dir, {}).get(job_data.plugin, {}).get('QSUB_OUTPUT', "")
if os.path.exists(output_file):
with open(output_file, 'r') as f:
output_string = util.readOutput(f, None, self.options)
output_string = util.readOutput(f, None)
job_data.jobs.getJobs()[0].setOutput(output_string)

# Add a caveat to each job, explaining that one of the jobs caused a TestHarness exception
Expand Down

0 comments on commit fdf5d18

Please sign in to comment.