From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 112C12057C for ; Tue, 1 Mar 2016 08:31:47 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/3] httpd: remove unneeded err and out fields from class Date: Tue, 1 Mar 2016 08:31:44 +0000 Message-Id: <20160301083145.26125-3-e@80x24.org> In-Reply-To: <20160301083145.26125-1-e@80x24.org> References: <20160301083145.26125-1-e@80x24.org> List-Id: Vestigial pieces from the nntpd code which aren't needed because the psgi env already has the "psgi.errors" key. --- script/public-inbox-httpd | 2 -- 1 file changed, 2 deletions(-) diff --git a/script/public-inbox-httpd b/script/public-inbox-httpd index d407059..2157962 100755 --- a/script/public-inbox-httpd +++ b/script/public-inbox-httpd @@ -129,8 +129,6 @@ sub new { }, ); bless { - err => \*STDERR, - out => \*STDOUT, app => $app, env => \%env, }, $class; -- EW