X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FHTTPD.pm;h=a9f55ff612e02d89e43a6af1bbab8667b51c6913;hb=5afb24f06627641e3fed608e807b5ab628cda348;hp=b0bf94adf7dda314d3d4bb2d134874334d1d5b75;hpb=a00def885e67f7da07fe64a92b6fd306d5011d45;p=public-inbox.git diff --git a/lib/PublicInbox/HTTPD.pm b/lib/PublicInbox/HTTPD.pm index b0bf94ad..a9f55ff6 100644 --- a/lib/PublicInbox/HTTPD.pm +++ b/lib/PublicInbox/HTTPD.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2018 all contributors +# Copyright (C) 2016-2020 all contributors # License: AGPL-3.0+ # wraps a listen socket for HTTP and links it to the PSGI app in @@ -7,8 +7,8 @@ package PublicInbox::HTTPD; use strict; use warnings; use Plack::Util; -require PublicInbox::HTTPD::Async; -require PublicInbox::Daemon; +use PublicInbox::HTTPD::Async; +use PublicInbox::Daemon; sub pi_httpd_async { PublicInbox::HTTPD::Async->new(@_) } @@ -36,13 +36,9 @@ sub new { # XXX unstable API!, only GitHTTPBackend needs # this to limit git-http-backend(1) parallelism. - # The rest of our PSGI code is generic, relying - # on "pull" model using "getline" to prevent - # over-buffering. - 'pi-httpd.async' => do { - no warnings 'once'; - *pi_httpd_async - }, + # We also check for the truthiness of this to + # detect when to use git_async_cat for slow blobs + 'pi-httpd.async' => \&pi_httpd_async ); bless { app => $app,