]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/HTTPD.pm
nntp: fix LIST OVERVIEW.FMT ordering and format
[public-inbox.git] / lib / PublicInbox / HTTPD.pm
index 38517710a414d00ee36d21b069de90953ffa4b08..d10ec51c373e041640c572e7c90a0b274db38df6 100644 (file)
@@ -29,13 +29,17 @@ sub new {
                'psgi.run_once'  => Plack::Util::FALSE,
                'psgi.multithread' => Plack::Util::FALSE,
                'psgi.multiprocess' => Plack::Util::TRUE,
+
+               # We don't use this anywhere, but we can support
+               # other PSGI apps which might use it:
                'psgix.input.buffered' => Plack::Util::TRUE,
 
-               # XXX unstable API!
-               'pi-httpd.async' => do {
-                       no warnings 'once';
-                       *pi_httpd_async
-               },
+               # 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' => \&pi_httpd_async
        );
        bless {
                app => $app,