Commit ca1e73f2 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Don't shmlog ECONNABORTED


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2602 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 133629de
......@@ -203,7 +203,7 @@ vca_acct(void *arg)
addr = (void*)&addr_s;
i = accept(pfd[u].fd, addr, &l);
if (i < 0) {
if (errno != EAGAIN) {
if (errno != EAGAIN && errno != ECONNABORTED) {
VSL(SLT_Debug, pfd[u].fd,
"Accept failed errno=%d", errno);
/* XXX: stats ? */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment