about summary refs log tree commit homepage
path: root/script
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-07-28 00:37:18 +0000
committerEric Wong <e@80x24.org>2021-07-28 05:16:34 +0000
commit88c67b2202295c73f8f682233304daf3867936df (patch)
tree56e7977930cf039e5d372c73299f4a1141fe2e20 /script
parent11e454643ca0a8556f972ba6954dfec3855c62e7 (diff)
downloadpublic-inbox-88c67b2202295c73f8f682233304daf3867936df.tar.gz
ECONNRESET should be rare on a private local socket, and if
we hit it, it's because we're hitting the listen() limit.
Diffstat (limited to 'script')
-rwxr-xr-xscript/lei1
1 files changed, 0 insertions, 1 deletions
diff --git a/script/lei b/script/lei
index fce8124a..99d94b4e 100755
--- a/script/lei
+++ b/script/lei
@@ -115,7 +115,6 @@ while (1) {
         my (@fds) = $recv_cmd->($sock, my $buf, 4096 * 33);
         if (scalar(@fds) == 1 && !defined($fds[0])) {
                 next if $!{EINTR};
-                last if $!{ECONNRESET};
                 die "recvmsg: $!";
         }
         last if $buf eq '';