Skip to content
Snippets Groups Projects
Commit e616f404 authored by Moe Jette's avatar Moe Jette
Browse files

Change sbatch response from "sbatch: Submitted batch job #" written to

    stderr to "Submitted batch job #" written to stdout.
parent 33769e66
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,8 @@ documents those changes that are of interest to users and admins.
-- Added to scancel the ability to select jobs by account and qos
-- Recycled the "-A" argument indicate "account" for all the commands that
accept the --account argument (srun -A to allocate is no longer supported.)
-- Change sbatch response from "sbatch: Submitted batch job #" written to
stderr to "Submitted batch job #" written to stdout.
* Changes in SLURM 2.1.0-pre2
=============================
......
......@@ -148,7 +148,7 @@ int main(int argc, char *argv[])
error(msg);
sleep (++retries);
}
info("Submitted batch job %d", resp->job_id);
printf("Submitted batch job %u\n", resp->job_id);
xfree(desc.script);
slurm_free_submit_response_response_msg(resp);
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment