From: Daniele Segato <daniele.bilug@gmail.com>
To: Git Mailing List <git@vger.kernel.org>
Subject: Re: how to skip branches on git svn clone/fetch when there are errors
Date: Mon, 7 Sep 2009 15:34:28 +0200 [thread overview]
Message-ID: <9accb4400909070634oee46b78g9270586a2b0eb4b9@mail.gmail.com> (raw)
In-Reply-To: <9accb4400909070230n413c6ecfqef8238422dd5d3b@mail.gmail.com>
On Mon, Sep 7, 2009 at 11:30 AM, Daniele Segato<daniele.bilug@gmail.com> wrote:
> more info on the error (enabled the confess instead of croak to the
> Core.pm library)
>
> Use of uninitialized value in concatenation (.) or string at
> /usr/lib/perl5/SVN/Core.pm line 585.
> Authorization failed: at /usr/lib/perl5/SVN/Core.pm line 654
> SVN::Error::confess_on_error('_p_svn_error_t=SCALAR(0x9492a50)')
> called at /usr/lib/perl5/SVN/Ra.pm line 492
> SVN::Ra::AUTOLOAD('Git::SVN::Ra=HASH(0x945dae8)',
> 'alfresco-enterprise-mirror/alfresco/BRANCHES/V2.1-A/root', 7738,
> 'SVN::Pool=REF(0x9492bc0)') called at /usr/bin/git-svn line 3760
> Git::SVN::Ra::check_path('Git::SVN::Ra=HASH(0x945dae8)',
> 'alfresco-enterprise-mirror/alfresco/BRANCHES/V2.1-A/root', 7738)
> called at /usr/bin/git-svn line 4045
> Git::SVN::Ra::get_dir_check('Git::SVN::Ra=HASH(0x945dae8)',
> 'HASH(0x92131e0)', 'HASH(0x9388050)', 7738) called at /usr/bin/git-svn
> line 4062
> Git::SVN::Ra::match_globs('Git::SVN::Ra=HASH(0x945dae8)',
> 'HASH(0x92131e0)', 'HASH(0x9463c00)', 'ARRAY(0x90bbc00)', 7738) called
> at /usr/bin/git-svn line 3985
> Git::SVN::Ra::gs_fetch_loop_common('Git::SVN::Ra=HASH(0x945dae8)',
> 7737, 16113, 'ARRAY(0x90bbbe0)', 'ARRAY(0x90bbc00)') called at
> /usr/bin/git-svn line 1415
> Git::SVN::fetch_all('svn', 'HASH(0x9464250)') called at
> /usr/bin/git-svn line 372
> main::cmd_fetch() called at /usr/bin/git-svn line 253
> eval {...} called at /usr/bin/git-svn line 251
>
>
> I'll keep looking at it to see if I can figure out a way to "skip" the
> error myself and, eventually, provide a patch
I played a little with perl and modified the code
I attach the patch I created...
it probably sucks and doesn't take cares of a lot of thing that I
didn't thought about...
After applying it I was able to continue the git svn fetch from the
point I left skipping those problematics paths...
Still I get a lot of warnings with:
Use of uninitialized value in concatenation (.) or string at
/usr/lib/perl5/SVN/Core.pm line 584
I just want you to take a look at it
I will not be disappointed if you place this patch in the recycle bean :)
I cloned the git repo, checked out the v1.5.6.5 tag (which is my
current version) and modified the git-svn.perl file.
It probably wont help but I think I should share it anyway
(patch below my signature)
Bye,
Daniele
From e8a1a12e83b3f0b18ce842190d8fc8eddaa77f68 Mon Sep 17 00:00:00 2001
From: Daniele Segato <daniele.bilug@gmail.com>
Date: Mon, 7 Sep 2009 15:30:14 +0200
Subject: [PATCH] Ignore error 175007 authorization failed on checkpath
I don't know if this is the best solution to solve the issue but it does
let me download the repo skipping the problematics paths
---
git-svn.perl | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/git-svn.perl b/git-svn.perl
index a366c89..0ab6453 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -3756,7 +3756,23 @@ sub check_path {
return $cache->{data}->{$path};
}
my $pool = SVN::Pool->new;
+ my $err_handler = $SVN::Error::handler;
+ $SVN::Error::handler = sub {
+ (my $err) = @_;
+ my $errno = $err->apr_err();
+ my $err_key = $err->expanded_message;
+ if ($errno == 175007) {
+ warn "W: Ignoring error from SVN, path probably ",
+ "does not exist: ($errno): ",
+ $err->expanded_message,"\n";
+ }
+ return;
+ };
+
my $t = $self->SUPER::check_path($path, $r, $pool);
+
+ $SVN::Error::handler = $err_handler;
+
$pool->clear;
if ($r != $cache->{r}) {
%{$cache->{data}} = ();
--
1.5.6.5
next prev parent reply other threads:[~2009-09-07 13:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-31 8:26 how to skip branches on git svn clone/fetch when there are errors Daniele Segato
2009-09-05 6:16 ` Eric Wong
2009-09-05 8:55 ` Daniele Segato
2009-09-06 1:48 ` Eric Wong
2009-09-07 9:30 ` Daniele Segato
2009-09-07 13:34 ` Daniele Segato [this message]
2009-09-07 13:53 ` Daniele Segato
2009-09-07 15:53 ` Paolo Ciarrocchi
2009-09-07 17:55 ` Daniele Segato
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9accb4400909070634oee46b78g9270586a2b0eb4b9@mail.gmail.com \
--to=daniele.bilug@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).