Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oar/lib/job_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -2539,7 +2539,7 @@ def job_finishing_sequence(session, config, epilogue_script, job_id, events):
and ("deploy" not in job_types.keys())
and ("noop" not in job_types.keys())
):
hosts = get_job_current_hostnames(job_id)
hosts = get_job_current_hostnames(session, job_id)
logger.debug(
"[job_finishing_sequence] ["
+ str(job_id)
Expand Down
1 change: 0 additions & 1 deletion oar/lib/submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ def check_parameters(self):
"insecure characters found in the name of the job, please use only a-z, A-Z, 0-9, _.-",
)


return (0, "")

def read_array_param_file(self):
Expand Down
Loading