Skip to content
Snippets Groups Projects
Commit c2e7a615 authored by Danny Auble's avatar Danny Auble
Browse files

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
...@@ -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;
......
...@@ -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;
} }
......
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