Browse Source

Failure to accept in connector should be a fatal error

master
Con Kolivas 11 years ago
parent
commit
b85946cc31
  1. 4
      src/connector.c

4
src/connector.c

@ -450,8 +450,8 @@ retry:
if (interrupted()) if (interrupted())
goto retry; goto retry;
LOGERR("Failed to accept on connector socket, retrying in 5s"); LOGERR("Failed to accept on connector socket, retrying in 5s");
sleep(5); ret = 1;
goto retry; goto out;
} }
buf = recv_unix_msg(sockd); buf = recv_unix_msg(sockd);

Loading…
Cancel
Save