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,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: yahns-public@yhbt.net Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 739181F5CD; Thu, 12 Mar 2015 23:02:31 +0000 (UTC) Date: Thu, 12 Mar 2015 23:02:31 +0000 From: Eric Wong To: yahns-public@yhbt.net Subject: [PATCH] extras/proxy_pass: remove unused CHUNK_SIZE constant Message-ID: <20150312230231.GA16263@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: It was never used. --- extras/proxy_pass.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/extras/proxy_pass.rb b/extras/proxy_pass.rb index 0bec4ee..ac01c34 100644 --- a/extras/proxy_pass.rb +++ b/extras/proxy_pass.rb @@ -16,7 +16,6 @@ require 'timeout' # cheap on GNU/Linux... # This is totally untested but currently doesn't serve anything important. class ProxyPass # :nodoc: - CHUNK_SIZE = 16384 ERROR_502 = [ 502, {'Content-Length'=>'0','Content-Type'=>'text/plain'}, [] ] class ConnPool -- EW