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
a26eaa64
Commit
a26eaa64
authored
10 years ago
by
David Bigagli
Browse files
Options
Downloads
Patches
Plain Diff
Print spurious message about the absence of cgroup.conf at log level
debug2 instead of info.
parent
1f37d3b8
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/common/xcgroup_read_config.c
+1
-1
1 addition, 1 deletion
src/slurmd/common/xcgroup_read_config.c
with
3 additions
and
1 deletion
NEWS
+
2
−
0
View file @
a26eaa64
...
@@ -46,6 +46,8 @@ documents those changes that are of interest to users and administrators.
...
@@ -46,6 +46,8 @@ documents those changes that are of interest to users and administrators.
environment variable numbering at 0.
environment variable numbering at 0.
-- When a job uses multiple partition set the environment variable
-- When a job uses multiple partition set the environment variable
SLURM_JOB_PARTITION to be the one in which the job started.
SLURM_JOB_PARTITION to be the one in which the job started.
-- Print spurious message about the absence of cgroup.conf at log level debug2
instead of info.
* Changes in Slurm 14.11.3
* Changes in Slurm 14.11.3
==========================
==========================
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/common/xcgroup_read_config.c
+
1
−
1
View file @
a26eaa64
...
@@ -166,7 +166,7 @@ extern int read_slurm_cgroup_conf(slurm_cgroup_conf_t *slurm_cgroup_conf)
...
@@ -166,7 +166,7 @@ extern int read_slurm_cgroup_conf(slurm_cgroup_conf_t *slurm_cgroup_conf)
/* Get the cgroup.conf path and validate the file */
/* Get the cgroup.conf path and validate the file */
conf_path
=
get_extra_conf_path
(
"cgroup.conf"
);
conf_path
=
get_extra_conf_path
(
"cgroup.conf"
);
if
((
conf_path
==
NULL
)
||
(
stat
(
conf_path
,
&
buf
)
==
-
1
))
{
if
((
conf_path
==
NULL
)
||
(
stat
(
conf_path
,
&
buf
)
==
-
1
))
{
info
(
"
No cgroup.conf file (%s)"
,
conf_path
);
debug2
(
"%s:
No cgroup.conf file (%s)"
,
__func__
,
conf_path
);
}
else
{
}
else
{
debug
(
"Reading cgroup.conf file %s"
,
conf_path
);
debug
(
"Reading cgroup.conf file %s"
,
conf_path
);
...
...
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