Skip to content
Snippets Groups Projects
Commit 8914ea80 authored by Mark Grondona's avatar Mark Grondona
Browse files

o remove confusing recvfrom_timeout error message from slurm protocol code

parent d5a05c4b
No related branches found
No related tags found
No related merge requests found
......@@ -343,10 +343,8 @@ int slurm_receive_msg(slurm_fd fd, slurm_msg_t * msg, int timeout)
* length and allocate space on the heap for a buffer containing
* the message.
*/
if (_slurm_msg_recvfrom_timeout(fd, &buf, &buflen, 0, timeout) < 0) {
error("recvfrom_timeout: %m");
if (_slurm_msg_recvfrom_timeout(fd, &buf, &buflen, 0, timeout) < 0)
return SLURM_ERROR;
}
#if _DEBUG
_print_data (buftemp,rc);
......
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