Skip to content
Snippets Groups Projects
Commit 1de82afb authored by Danny Auble's avatar Danny Auble Committed by Morris Jette
Browse files

Return SLURM_ERROR when you can't find an address for a host

from commit ee4a9776.
parent 6b655edc
No related branches found
No related tags found
No related merge requests found
......@@ -329,6 +329,7 @@ static int _pmix_p2p_send_core(char *nodename, const char *address, char *data,
if (slurm_conf_get_addr(nodename, &msg.address) == SLURM_ERROR) {
PMIXP_ERROR("Can't find address for host "
"%s, check slurm.conf", nodename);
return SLURM_ERROR;
}
timeout = slurm_get_msg_timeout() * 1000;
......
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