Version: 1.6.11dfsg-1
Hi,
I can still reproduce this problem in the latest version.
If you run the attached script, you can see that SVN::Client opens ever
more connections without closing them again.
Regards,
Ansgar
#! /usr/bin/perl
use strict;
use warnings;
use SVN::Client;
my $url = "svn://svn.debian.org/pkg-perl/trunk/libhtml-formfu-perl/debian/compat";
my $ctx = new SVN::Client;
open my $null, ">", "/dev/null" or die "Could not open /dev/null: $!";
for (1..10) {
$ctx->cat($null, $url, 'HEAD');
system("ls", "-l", "/proc/$$/fd");
}