We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 277b9ef commit bde47a4Copy full SHA for bde47a4
.github/workflows/scripts/wait_for_slurm_job.sh
@@ -11,7 +11,7 @@ function wait_for_slurm_job() {
11
check_every=${3:-15}
12
13
while true; do
14
- status=$(ssh -p 3000 $host squeue --job $job_id --noheader --format=%T 2>/dev/null || echo "SSH error: $?")
+ status=$(ssh $host squeue --job $job_id --noheader --format=%T 2>/dev/null || echo "SSH error: $?")
15
echo "[$(date)] job $job_id: $status"
16
17
if [ -z "$status" ]; then
0 commit comments