Skip to content

Commit 04b5641

Browse files
authored
Merge pull request #515 from ExaWorks/fix_bsconfig_init
Fixed incorrect order of parameters in BatchSchedulerExecutorConfig
2 parents d49a2a4 + 428ee81 commit 04b5641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/psij/executors/batch/batch_scheduler_executor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def __init__(self, launcher_log_file: Optional[Path] = None,
105105
Whether to keep submit files and auxiliary job files (exit code and output files) after
106106
a job has completed.
107107
"""
108-
super().__init__(work_directory, launcher_log_file)
108+
super().__init__(launcher_log_file, work_directory)
109109
self.queue_polling_interval = queue_polling_interval
110110
self.initial_queue_polling_delay = initial_queue_polling_delay
111111
self.queue_polling_error_threshold = queue_polling_error_threshold

0 commit comments

Comments
 (0)