about summary refs log tree commit homepage
path: root/lib/PublicInbox/Spawn.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-24 02:52:24 +0000
committerEric Wong <e@80x24.org>2019-06-24 05:26:26 +0000
commitbd61cb1b18c7f38588e0c3b166dd265b738242cc (patch)
tree9159ce30f685f476c83fc1e84102438371f0aacc /lib/PublicInbox/Spawn.pm
parentfd533491c3dd1ca032deaddc66a42423354e828f (diff)
downloadpublic-inbox-bd61cb1b18c7f38588e0c3b166dd265b738242cc.tar.gz
Instead, the O_NONBLOCK flag is set by PublicInbox::HTTPD::Async;
and we won't be setting it elsewhere.
Diffstat (limited to 'lib/PublicInbox/Spawn.pm')
-rw-r--r--lib/PublicInbox/Spawn.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/PublicInbox/Spawn.pm b/lib/PublicInbox/Spawn.pm
index 66b916df..9161bb5b 100644
--- a/lib/PublicInbox/Spawn.pm
+++ b/lib/PublicInbox/Spawn.pm
@@ -229,8 +229,6 @@ sub popen_rd {
         my ($cmd, $env, $opts) = @_;
         pipe(my ($r, $w)) or die "pipe: $!\n";
         $opts ||= {};
-        my $blocking = $opts->{Blocking};
-        IO::Handle::blocking($r, $blocking) if defined $blocking;
         $opts->{1} = fileno($w);
         my $pid = spawn($cmd, $env, $opts);
         return unless defined $pid;