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 nemo_run/core/execution/templates/slurm.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ while ! $all_done; do
# Process is no longer running => check its exit status.
wait "$pid"
exitcode=$?
echo "Process $pid exited with code $exit_code at $(date '+%Y-%m-%d %H:%M:%S')"
echo "Process $pid exited with code $exitcode at $(date '+%Y-%m-%d %H:%M:%S')"
# Wait a bit (to get a clean stack trace in case there is one being generated), then kill the
# remaining processes if needed.
sleep {{monitor_group_job_wait_time}}
Expand Down
2 changes: 1 addition & 1 deletion test/core/execution/artifacts/ft_het_slurm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ while ! $all_done; do
# Process is no longer running => check its exit status.
wait "$pid"
exitcode=$?
echo "Process $pid exited with code $exit_code at $(date '+%Y-%m-%d %H:%M:%S')"
echo "Process $pid exited with code $exitcode at $(date '+%Y-%m-%d %H:%M:%S')"
# Wait a bit (to get a clean stack trace in case there is one being generated), then kill the
# remaining processes if needed.
sleep 60
Expand Down
2 changes: 1 addition & 1 deletion test/core/execution/artifacts/group_resource_req_slurm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ while ! $all_done; do
# Process is no longer running => check its exit status.
wait "$pid"
exitcode=$?
echo "Process $pid exited with code $exit_code at $(date '+%Y-%m-%d %H:%M:%S')"
echo "Process $pid exited with code $exitcode at $(date '+%Y-%m-%d %H:%M:%S')"
# Wait a bit (to get a clean stack trace in case there is one being generated), then kill the
# remaining processes if needed.
sleep 60
Expand Down
2 changes: 1 addition & 1 deletion test/core/execution/artifacts/group_slurm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ while ! $all_done; do
# Process is no longer running => check its exit status.
wait "$pid"
exitcode=$?
echo "Process $pid exited with code $exit_code at $(date '+%Y-%m-%d %H:%M:%S')"
echo "Process $pid exited with code $exitcode at $(date '+%Y-%m-%d %H:%M:%S')"
# Wait a bit (to get a clean stack trace in case there is one being generated), then kill the
# remaining processes if needed.
sleep 60
Expand Down
2 changes: 1 addition & 1 deletion test/core/execution/artifacts/het_slurm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ while ! $all_done; do
# Process is no longer running => check its exit status.
wait "$pid"
exitcode=$?
echo "Process $pid exited with code $exit_code at $(date '+%Y-%m-%d %H:%M:%S')"
echo "Process $pid exited with code $exitcode at $(date '+%Y-%m-%d %H:%M:%S')"
# Wait a bit (to get a clean stack trace in case there is one being generated), then kill the
# remaining processes if needed.
sleep 60
Expand Down
Loading