Browse Source

send_recv_proc failing is non-fatal so convert send_proc to being non-fatal as well

master
Con Kolivas 9 years ago
parent
commit
b63b213c8b
  1. 4
      src/ckpool.c

4
src/ckpool.c

@ -635,10 +635,8 @@ void _send_proc(proc_instance_t *pi, const char *msg, const char *file, const ch
ret = true;
Close(sockd);
out:
if (unlikely(!ret)) {
if (unlikely(!ret))
LOGERR("Failure in send_proc from %s %s:%d", file, func, line);
childsighandler(15);
}
}
/* Send a single message to a process instance and retrieve the response, then

Loading…
Cancel
Save