]> git.ipfire.org Git - thirdparty/git.git/commit - git-svn.perl
git-svn: fix blocking with svn:// servers after do_switch
authorEric Wong <normalperson@yhbt.net>
Wed, 4 Jul 2007 21:07:42 +0000 (14:07 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 5 Jul 2007 04:06:07 +0000 (21:06 -0700)
commit7730fbe62490f9e6ee33f6136ecd0e75869894e3
treeadc4a7b04d59900af7851171f6ea42a3fcaf044f
parent32c37c123741bee79617a6830257519c53681704
git-svn: fix blocking with svn:// servers after do_switch

We now explicitly disconnect before starting new SVN::Ra
connections.  SVN::Ra objects will automatically be disconnected
from the server on DESTROY.

SVN servers seem to have problems accepting multiple connections
from one client, and the SVN library has trouble being connected
to multiple servers at once.  This appears to cause opening the
second connection to block, and cause git-svn to be unusable
after using the do_switch() function.

git-svn opens another connection because a workaround is
necesary for the buggy reparent function handling on certain
versions of svn:// and svn+ssh:// servers.  Instead of using the
reparent function (analogous to chdir), it will reopen a new
connection to a different URL on the SVN server.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-svn.perl