Return-Path: X-Original-To: apmail-subversion-dev-archive@minotaur.apache.org Delivered-To: apmail-subversion-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AE2119EDD for ; Wed, 8 Feb 2012 20:51:43 +0000 (UTC) Received: (qmail 12524 invoked by uid 500); 8 Feb 2012 20:51:43 -0000 Delivered-To: apmail-subversion-dev-archive@subversion.apache.org Received: (qmail 12329 invoked by uid 500); 8 Feb 2012 20:51:42 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 12294 invoked by uid 99); 8 Feb 2012 20:51:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Feb 2012 20:51:42 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of gstein@gmail.com designates 209.85.212.43 as permitted sender) Received: from [209.85.212.43] (HELO mail-vw0-f43.google.com) (209.85.212.43) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Feb 2012 20:51:37 +0000 Received: by vbbfq11 with SMTP id fq11so1241310vbb.16 for ; Wed, 08 Feb 2012 12:51:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=oaRK2bO91x1cFp7Hy8/B03+80kdRYbiS8QnT/WPF9uk=; b=AlAqN77tDrk/u+39De1Z6yApZ8xHiCmhEVBx/MNLAcvcVLSNKCiFcxHOeJnxOsACZ0 SYjWhbWSgYLoMfNh7wvBMqKPOb0XEY9UypDpYSP+vpm0hg0H34EX1xW7CreabnVbYYJV ka31Ximq6DivhPsRjCAYDXNU91JfCmkffv/S4= MIME-Version: 1.0 Received: by 10.220.115.133 with SMTP id i5mr12949735vcq.11.1328734276997; Wed, 08 Feb 2012 12:51:16 -0800 (PST) Received: by 10.220.75.17 with HTTP; Wed, 8 Feb 2012 12:51:16 -0800 (PST) In-Reply-To: <4F32D164.5090800@collab.net> References: <4F318777.1080306@collab.net> <4F32D164.5090800@collab.net> Date: Wed, 8 Feb 2012 15:51:16 -0500 Message-ID: Subject: Re: Error While Checking out Git Repository From: Greg Stein To: "C. Michael Pilato" Cc: Nick Hengeveld , dev@subversion.apache.org Content-Type: text/plain; charset=ISO-8859-1 On Wed, Feb 8, 2012 at 14:47, C. Michael Pilato wrote: > I'm happy to try it with 1.7, too, but couldn't easily figure out the > correct checkout URL: > > $ svn co https://github.com/NuGet/PoliteCaptcha.git > svn: E175009: Unable to connect to a repository at URL > 'https://github.com/NuGet/PoliteCaptcha.git' > svn: E175009: XML parsing failed: (411 Length Required) > $ This looks like the problem where ra_serf starts out with an HTTP/1.1 request: specifically, a chunked request. This is typically caused by a non-1.1 proxy in front of the server, such as nginx. Ideally, github would switch to a newer/better proxy such as haproxy. But the core problem is on our side -- issue 3979 (http://subversion.tigris.org/issues/show_bug.cgi?id=3979). >... Cheers, -g