X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FMboxGz.pm;fp=lib%2FPublicInbox%2FMboxGz.pm;h=913be6e4221550b6bec29753a43c8a3183f49d46;hb=0821af5f21fdb083020ae2e3e79e4227ef59cd4f;hp=967af9c68ad1bf9e4961fbb86aa4ddc1bd2ddee4;hpb=f60f934cfe1e7a06c853741fbabbbbe3a9a747a4;p=public-inbox.git diff --git a/lib/PublicInbox/MboxGz.pm b/lib/PublicInbox/MboxGz.pm index 967af9c6..913be6e4 100644 --- a/lib/PublicInbox/MboxGz.pm +++ b/lib/PublicInbox/MboxGz.pm @@ -29,8 +29,7 @@ sub mbox_gz { bless $self, __PACKAGE__; my $res_hdr = [ 'Content-Type' => 'application/gzip', 'Content-Disposition' => "inline; filename=$fn.mbox.gz" ]; - $self->psgi_response(200, $res_hdr, \&async_next, - \&PublicInbox::Mbox::async_eml); + $self->psgi_response(200, $res_hdr); } # called by Plack::Util::foreach or similar (generic PSGI) @@ -47,4 +46,6 @@ sub getline { $self->zflush; } +no warnings 'once'; +*async_eml = \&PublicInbox::Mbox::async_eml; 1;