From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ivan Todoroski Subject: Re: Clone fails on a repo with too many heads/tags Date: Sun, 25 Mar 2012 19:33:09 +0200 Message-ID: <4F6F56D5.3000309@gmx.net> References: <20120318190659.GA24829@sigill.intra.peff.net> <20120319024436.GB10426@sigill.intra.peff.net> <4F69B5F0.2060605@gmx.net> <20120321171423.GA13140@sigill.intra.peff.net> <4F6A33C5.2080909@gmx.net> <20120321201722.GA15021@sigill.intra.peff.net> <4F6E3373.7090500@gmx.net> <20120325010609.GB27651@sigill.intra.peff.net> <20120325023215.GA13958@sigill.intra.peff.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Shawn Pearce , Nguyen Thai Ngoc Duy , Jakub Narebski , git@vger.kernel.org To: Jeff King X-From: git-owner@vger.kernel.org Sun Mar 25 19:32:55 2012 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SBrJF-00080b-Qa for gcvg-git-2@plane.gmane.org; Sun, 25 Mar 2012 19:32:54 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756644Ab2CYRcs (ORCPT ); Sun, 25 Mar 2012 13:32:48 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:59089 "HELO mailout-de.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755740Ab2CYRcr (ORCPT ); Sun, 25 Mar 2012 13:32:47 -0400 Received: (qmail invoked by alias); 25 Mar 2012 17:32:45 -0000 Received: from unknown (EHLO [127.0.0.1]) [77.28.173.43] by mail.gmx.net (mp016) with SMTP; 25 Mar 2012 19:32:45 +0200 X-Authenticated: #14478976 X-Provags-ID: V01U2FsdGVkX1+4OjEggEe4bkpyabVJciMR0yR4ah7d+tnxBrAVbY ERXuWLh7gkjqOy User-Agent: Thunderbird 2.0.0.24 (Windows/20100228) In-Reply-To: <20120325023215.GA13958@sigill.intra.peff.net> X-Y-GMX-Trusted: 0 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On 25.03.2012 04:32, Jeff King wrote: > On Sat, Mar 24, 2012 at 09:06:09PM -0400, Jeff King wrote: > >> That's weird. 405 is "Method Not Allowed". Clone shouldn't be doing >> anything more exotic than GET and POST. And the prior tests pass, so it >> means that it's working in general. The only thing different about this >> test is that apache is configured to use mod_rewrite to issue a >> redirect. >> >> Does your machine have mod_rewrite installed and enabled? I would think >> apache would complain at startup if it wasn't. I wonder if there's >> something non-portable in the minimal apache config we ship. >> >> Does httpd/error.log in the trash directory say anything interesting? > > Also, does it work any better with this patch? > > diff --git a/t/lib-httpd/apache.conf b/t/lib-httpd/apache.conf > index 3c12b05..714760d 100644 > --- a/t/lib-httpd/apache.conf > +++ b/t/lib-httpd/apache.conf > @@ -61,9 +61,8 @@ ScriptAlias /smart_noexport/ ${GIT_EXEC_PATH}/git-http-backend/ > Options ExecCGI > > > -RewriteEngine on > -RewriteRule ^/smart-redir-perm/(.*)$ /smart/$1 [R=301] > -RewriteRule ^/smart-redir-temp/(.*)$ /smart/$1 [R=302] > +RedirectMatch 301 ^/smart-redir-perm/(.*)$ /smart/$1 > +RedirectMatch 302 ^/smart-redir-temp/(.*)$ /smart/$1 > > > LoadModule ssl_module modules/mod_ssl.so Yes! That patch did it, t5551-http-fetch.sh now passes fully. Thank you.