Skip to content
Snippets Groups Projects
Commit 669f0260 authored by jette's avatar jette
Browse files

Add sleep to munge call on socket timeout

This could happen in srun too and would typically indicate that
the munged is too busy to respond
parent 3f1552be
No related branches found
No related tags found
No related merge requests found
......@@ -524,9 +524,7 @@ _decode_cred(slurm_auth_credential_t *c, char *socket)
if ((e == EMUNGE_SOCKET) && retry--) {
error ("Munge decode failed: %s (retrying ...)",
munge_ctx_strerror(ctx));
#ifdef MULTIPLE_SLURMD
sleep(1);
#endif
usleep(10000); /* Likely munged too busy */
goto again;
}
#ifdef MULTIPLE_SLURMD
......
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