]> Sergey Matveev's repositories - public-inbox.git/blobdiff - script/public-inbox-httpd
httpd: remove unneeded err and out fields from class
[public-inbox.git] / script / public-inbox-httpd
index f1a5d7992a4e539a261bfee044378922f9abea6f..215796225d8043c95e7e8ce219289c45cc86d762 100755 (executable)
@@ -59,6 +59,10 @@ daemon_run('0.0.0.0:8080', $refresh,
 
 1;
 
+# XXX This is a totally unstable API for public-inbox internal use only
+# This is exposed via the 'pi-httpd.async' key in the PSGI env hash.
+# The name of this key is not even stable!
+# Currently is is intended for use with read-only pipes.
 package PublicInbox::HTTPD::Async;
 use strict;
 use warnings;
@@ -125,8 +129,6 @@ sub new {
                },
        );
        bless {
-               err => \*STDERR,
-               out => \*STDOUT,
                app => $app,
                env => \%env,
        }, $class;