about summary refs log tree commit homepage
path: root/lib/PublicInbox/ParentPipe.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-24 02:52:18 +0000
committerEric Wong <e@80x24.org>2019-06-24 05:26:26 +0000
commitf41dc46f6213661ba51443d6cb0d6a9ba4d41472 (patch)
treeb3be389a55751c0869016e75de563532cab2cbda /lib/PublicInbox/ParentPipe.pm
parente8dce524749fccb5b0044a92e221b03282f5024e (diff)
downloadpublic-inbox-f41dc46f6213661ba51443d6cb0d6a9ba4d41472.tar.gz
We can avoid the EPOLL_CTL_ADD && EPOLL_CTL_MOD sequence with
a single EPOLL_CTL_ADD.
Diffstat (limited to 'lib/PublicInbox/ParentPipe.pm')
-rw-r--r--lib/PublicInbox/ParentPipe.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/ParentPipe.pm b/lib/PublicInbox/ParentPipe.pm
index a9f05fc1..ccc0815e 100644
--- a/lib/PublicInbox/ParentPipe.pm
+++ b/lib/PublicInbox/ParentPipe.pm
@@ -10,9 +10,8 @@ use fields qw(cb);
 sub new ($$$) {
         my ($class, $pipe, $cb) = @_;
         my $self = fields::new($class);
-        $self->SUPER::new($pipe);
+        $self->SUPER::new($pipe, PublicInbox::DS::EPOLLIN());
         $self->{cb} = $cb;
-        $self->watch_read(1);
         $self;
 }