Skip to content
Snippets Groups Projects
Commit 7ab379ba authored by Hass AbouZeid's avatar Hass AbouZeid
Browse files

Merge branch '21.0-beamspot-lsfjobrunner' into '21.0'

Fix LSF job submission

See merge request !1876
parents 817c5343 5a4d7522
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ class LSFJobRunner(JobRunner):
def submitJob(self,jobConfig):
"""Submit a JobRunner job as a LSF batch job."""
batchCmd = 'bsub -q %(batchqueue)s -J %(jobname)s -o %(logfile)s %(scriptfile)s' % jobConfig
batchCmd = 'bsub -L /bin/bash -q %(batchqueue)s -J %(jobname)s -o %(logfile)s %(scriptfile)s' % jobConfig
print batchCmd
os.system(batchCmd)
return None
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment