Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
continue on server socket on non-blocking errors (twitter#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yao Yue committed Sep 6, 2019
1 parent 2a62281 commit 8737d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/channel/cc_tcp.c
Expand Up @@ -340,7 +340,7 @@ _tcp_accept(struct tcp_conn *sc)

log_error("accept on sd %d failed: %s", sc->sd, strerror(errno));
INCR(tcp_metrics, tcp_accept_ex);
return -1;
continue;
}

break;
Expand Down

0 comments on commit 8737d99

Please sign in to comment.