Skip to content

Commit 256b361

Browse files
authored
Update slurmmanager.jl
1 parent 877dd8c commit 256b361

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/slurmmanager.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ mutable struct SlurmManager <: ClusterManager
1212
srun_proc
1313

1414
function SlurmManager(; launch_timeout=60.0, srun_post_exit_sleep=0.01)
15-
ntasks_int = get_slurm_ntasks_int()
16-
jobid_int = get_slurm_jobid_int()
15+
ntasks = get_slurm_ntasks_int()
16+
jobid = get_slurm_jobid_int()
1717

18-
new(jobid_int, ntasks_int, launch_timeout, srun_post_exit_sleep, nothing)
18+
new(jobid, ntasks, launch_timeout, srun_post_exit_sleep, nothing)
1919
end
2020
end
2121

0 commit comments

Comments
 (0)