Skip to content

Commit

Permalink
updated LSF bsub command
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunjaekwon committed Feb 18, 2022
1 parent 703cc59 commit 40a09ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bag/concurrent/lsf.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ async def async_new_subprocess(self,

main_cmd = " ".join(args)

cmd_args = ['bsub', '-K', '-o', str(log_path), '-e', str(log_path)] + self._options + [f'"{main_cmd}"']
cmd_args = ['bsub', '-K', '-oo', str(log_path)] + self._options + [f'"{main_cmd}"']
cmd = " ".join(cmd_args)

async with self._semaphore:
Expand Down

0 comments on commit 40a09ae

Please sign in to comment.