about summary refs log tree commit homepage
path: root/lib/PublicInbox/HTTPD
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/HTTPD
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/HTTPD')
-rw-r--r--lib/PublicInbox/HTTPD/Async.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/HTTPD/Async.pm b/lib/PublicInbox/HTTPD/Async.pm
index 46ea188c..dae62e55 100644
--- a/lib/PublicInbox/HTTPD/Async.pm
+++ b/lib/PublicInbox/HTTPD/Async.pm
@@ -25,10 +25,9 @@ sub new {
 
         my $self = fields::new($class);
         IO::Handle::blocking($io, 0);
-        $self->SUPER::new($io);
+        $self->SUPER::new($io, PublicInbox::DS::EPOLLIN());
         $self->{cb} = $cb;
         $self->{cleanup} = $cleanup;
-        $self->watch_read(1);
         $self;
 }