Skip to content

Commit 2de8f72

Browse files
committed
Fixes #150
1 parent a20291c commit 2de8f72

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

oar/lib/job_handling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2539,7 +2539,7 @@ def job_finishing_sequence(session, config, epilogue_script, job_id, events):
25392539
and ("deploy" not in job_types.keys())
25402540
and ("noop" not in job_types.keys())
25412541
):
2542-
hosts = get_job_current_hostnames(job_id)
2542+
hosts = get_job_current_hostnames(session, job_id)
25432543
logger.debug(
25442544
"[job_finishing_sequence] ["
25452545
+ str(job_id)

oar/lib/submission.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ def check_parameters(self):
223223
"insecure characters found in the name of the job, please use only a-z, A-Z, 0-9, _.-",
224224
)
225225

226-
227226
return (0, "")
228227

229228
def read_array_param_file(self):

0 commit comments

Comments
 (0)