about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/HTTPD/Async.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/PublicInbox/HTTPD/Async.pm b/lib/PublicInbox/HTTPD/Async.pm
index b00e6370..add07ce4 100644
--- a/lib/PublicInbox/HTTPD/Async.pm
+++ b/lib/PublicInbox/HTTPD/Async.pm
@@ -24,14 +24,19 @@ sub new {
         $self;
 }
 
+sub restart_read_cb ($) {
+        my ($self) = @_;
+        sub { $self->watch_read(1) }
+}
+
 sub async_pass {
         my ($self, $io, $fh, $bref) = @_;
         # In case the client HTTP connection ($io) dies, it
         # will automatically close this ($self) object.
         $io->{forward} = $self;
         $fh->write($$bref);
+        my $restart_read = restart_read_cb($self);
         weaken($self);
-        my $restart_read = sub { $self->watch_read(1) };
         $self->{cb} = sub {
                 my $r = sysread($self->{sock}, $$bref, 8192);
                 if ($r) {