Skip to content

Commit 428ee81

Browse files
committed
Fixed incorrect order of parameters in BatchSchedulerExecutorConfig.__init__()
1 parent d49a2a4 commit 428ee81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/executors/batch/batch_scheduler_executor.py

Lines changed: 1 addition & 1 deletion
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)