Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
d6e6bf6b
Commit
d6e6bf6b
authored
7 years ago
by
Brian Christiansen
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/slurm-17.02' into slurm-17.11
parents
60cb90f2
f9977ee5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
src/sbatch/sbatch.c
+6
-1
6 additions, 1 deletion
src/sbatch/sbatch.c
with
7 additions
and
1 deletion
NEWS
+
1
−
0
View file @
d6e6bf6b
...
@@ -439,6 +439,7 @@ documents those changes that are of interest to users and administrators.
...
@@ -439,6 +439,7 @@ documents those changes that are of interest to users and administrators.
-- Fix potential of slurmstepd segfaulting when the extern step fails to start.
-- Fix potential of slurmstepd segfaulting when the extern step fails to start.
-- Allow nodes state to be updated between FAIL and DRAIN.
-- Allow nodes state to be updated between FAIL and DRAIN.
-- Avoid registering a job'd credential multiple times.
-- Avoid registering a job'd credential multiple times.
-- Fix sbatch --wait to stop waiting after job is gone from memory.
* Changes in Slurm 17.02.9
* Changes in Slurm 17.02.9
==========================
==========================
...
...
This diff is collapsed.
Click to expand it.
src/sbatch/sbatch.c
+
6
−
1
View file @
d6e6bf6b
...
@@ -390,7 +390,12 @@ static int _job_wait(uint32_t job_id)
...
@@ -390,7 +390,12 @@ static int _job_wait(uint32_t job_id)
}
}
}
}
slurm_free_job_info_msg
(
resp
);
slurm_free_job_info_msg
(
resp
);
}
else
if
(
rc
==
ESLURM_INVALID_JOB_ID
)
{
}
else
if
((
rc
==
ESLURM_INVALID_JOB_ID
)
||
(
errno
==
ESLURM_INVALID_JOB_ID
))
{
/*
* 17.11 returns the error code in rc (and errno). The
* check for errno isn't needed in 17.11.
*/
error
(
"Job %u no longer found and exit code not found"
,
error
(
"Job %u no longer found and exit code not found"
,
job_id
);
job_id
);
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment