about summary refs log tree commit homepage
path: root/lib/PublicInbox/Syscall.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-02-22 17:25:52 +0000
committerEric Wong <e@80x24.org>2023-02-22 21:36:06 +0000
commitcd73e06277ae9286e9a823b591ca5187ce35cdca (patch)
treef3d75aa5ac80cbca4939d224682e1d1e88ec0f6e /lib/PublicInbox/Syscall.pm
parent752af98576ae3e68a301e07f11f023f3bf941152 (diff)
downloadpublic-inbox-cd73e06277ae9286e9a823b591ca5187ce35cdca.tar.gz
It's an informative message that's harmless, so hopefully
the `#' prefix puts the users mind at ease.

(I saw it on an `lei import' against an IMAP source)
Diffstat (limited to 'lib/PublicInbox/Syscall.pm')
-rw-r--r--lib/PublicInbox/Syscall.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Syscall.pm b/lib/PublicInbox/Syscall.pm
index 530ee93b..841a2106 100644
--- a/lib/PublicInbox/Syscall.pm
+++ b/lib/PublicInbox/Syscall.pm
@@ -427,7 +427,7 @@ no warnings 'once';
         } while ($sent < 0 &&
                         ($!{ENOBUFS} || $!{ENOMEM} || $!{ETOOMANYREFS}) &&
                         (++$try < 50) &&
-                        warn "sleeping on sendmsg: $! (#$try)\n" &&
+                        warn "# sleeping on sendmsg: $! (#$try)\n" &&
                         select(undef, undef, undef, 0.1) == 0);
         $sent >= 0 ? $sent : undef;
 };