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
c2e7a615
Commit
c2e7a615
authored
16 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
made error about finding syms in the plugin into a debug4
parent
8f541a7d
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
src/common/plugin.c
+2
-2
2 additions, 2 deletions
src/common/plugin.c
src/plugins/auth/munge/auth_munge.c
+22
-8
22 additions, 8 deletions
src/plugins/auth/munge/auth_munge.c
with
24 additions
and
10 deletions
src/common/plugin.c
+
2
−
2
View file @
c2e7a615
...
@@ -301,8 +301,8 @@ plugin_get_syms( plugin_handle_t plug,
...
@@ -301,8 +301,8 @@ plugin_get_syms( plugin_handle_t plug,
if
(
ptrs
[
i
]
)
if
(
ptrs
[
i
]
)
++
count
;
++
count
;
else
else
error
(
"Couldn't find sym '%s' in the plugin"
,
debug4
(
"Couldn't find sym '%s' in the plugin"
,
names
[
i
]);
names
[
i
]);
}
}
return
count
;
return
count
;
...
...
This diff is collapsed.
Click to expand it.
src/plugins/auth/munge/auth_munge.c
+
22
−
8
View file @
c2e7a615
...
@@ -482,15 +482,29 @@ _decode_cred(slurm_auth_credential_t *c, char *socket)
...
@@ -482,15 +482,29 @@ _decode_cred(slurm_auth_credential_t *c, char *socket)
munge_ctx_strerror
(
ctx
));
munge_ctx_strerror
(
ctx
));
goto
again
;
goto
again
;
}
}
#ifdef MULTIPLE_SLURMD
/*
/* In multple slurmd mode this will happen all the
* Print any valid credential data
* time since we are authenticating with the same
* munged.
*/
*/
error
(
"Munge decode failed: %s"
,
munge_ctx_strerror
(
ctx
));
if
(
e
!=
EMUNGE_CRED_REPLAYED
)
{
_print_cred
(
ctx
);
#endif
/*
plugin_errno
=
e
+
MUNGE_ERRNO_OFFSET
;
* Print any valid credential data
*/
error
(
"Munge decode failed: %s"
,
munge_ctx_strerror
(
ctx
));
_print_cred
(
ctx
);
plugin_errno
=
e
+
MUNGE_ERRNO_OFFSET
;
#ifdef MULTIPLE_SLURMD
}
else
{
debug2
(
"We had a replayed cred, "
"but this is expected in multiple "
"slurmd mode."
);
e
=
0
;
}
#endif
goto
done
;
goto
done
;
}
}
...
...
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