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
3c2be97b
Commit
3c2be97b
authored
15 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
Make it so env var SLURM_SRUN_COMM_HOST is overwritten if already in existance in the slurmd.
parent
5f86066a
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
+2
-0
2 additions, 0 deletions
NEWS
src/slurmd/slurmd/req.c
+4
-1
4 additions, 1 deletion
src/slurmd/slurmd/req.c
with
6 additions
and
1 deletion
NEWS
+
2
−
0
View file @
3c2be97b
...
...
@@ -21,6 +21,8 @@ documents those changes that are of interest to users and admins.
current version of slurm installed on system when building against the api.
-- Patch from Matthieu Hautreux that adds an entry into the error file when
a job or step receives a TERM or KILL signal.
-- Make it so env var SLURM_SRUN_COMM_HOST is overwritten if already in
existance in the slurmd.
* Changes in SLURM 2.1.0-pre8
=============================
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/slurmd/req.c
+
4
−
1
View file @
3c2be97b
...
...
@@ -840,7 +840,10 @@ _rpc_launch_tasks(slurm_msg_t *msg)
slurm_get_ip_str
(
cli
,
&
port
,
host
,
sizeof
(
host
));
info
(
"launch task %u.%u request from %u.%u@%s (port %hu)"
,
req
->
job_id
,
req
->
job_step_id
,
req
->
uid
,
req
->
gid
,
host
,
port
);
env_array_append
(
&
req
->
env
,
"SLURM_SRUN_COMM_HOST"
,
host
);
/* this could be set previously and needs to be overwritten by
this call for messages to work correctly for the new call */
env_array_overwrite
(
&
req
->
env
,
"SLURM_SRUN_COMM_HOST"
,
host
);
req
->
envc
=
envcount
(
req
->
env
);
first_job_run
=
!
slurm_cred_jobid_cached
(
conf
->
vctx
,
req
->
job_id
);
...
...
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