Skip to content

Commit

Permalink
Moved to factory method for ProcessExitCode
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Feb 20, 2024
1 parent 6425071 commit a7501c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/slurm/slurmexecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def run_slurm(benchmark, args, log_file):
"walltime": wall_time,
"cputime": cpu_time,
"memory": memory_usage,
"exitcode": ProcessExitCode(raw=exit_code, value=exit_code, signal=None),
"exitcode": ProcessExitCode.create(value=exit_code),
}


Expand Down

0 comments on commit a7501c2

Please sign in to comment.