about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-06-27 10:03:56 +0000
committerEric Wong <e@yhbt.net>2020-06-28 22:29:39 +0000
commitd3eba34bc83fc75ded13e3b1c6bd763261452dae (patch)
tree391fdcebf3657054a20ee32d7db77b915c617bdf
parent371e5e2f808af2e4726d0f1eb6f1f81ea7214ae9 (diff)
downloadpublic-inbox-d3eba34bc83fc75ded13e3b1c6bd763261452dae.tar.gz
In case output is redirected to a pipe, ensure stdout and stderr
are always unbuffered, as -watch may go long periods without
any output to fill up buffers.
-rwxr-xr-xscript/public-inbox-watch4
1 files changed, 3 insertions, 1 deletions
diff --git a/script/public-inbox-watch b/script/public-inbox-watch
index ae7b70be..c07d45d7 100755
--- a/script/public-inbox-watch
+++ b/script/public-inbox-watch
@@ -2,13 +2,15 @@
 # Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
-use warnings;
+use IO::Handle;
 use PublicInbox::WatchMaildir;
 use PublicInbox::Config;
 use PublicInbox::DS;
 use PublicInbox::Sigfd;
 use PublicInbox::Syscall qw(SFD_NONBLOCK);
 my $oldset = PublicInbox::Sigfd::block_signals();
+STDOUT->autoflush(1);
+STDERR->autoflush(1);
 my ($config, $watch_md);
 my $reload = sub {
         $config = PublicInbox::Config->new;