From: Dirk Koopman Date: Sat, 23 Jun 2007 22:54:32 +0000 (+0100) Subject: Make obscount disconnections visible X-Git-Tag: 1.55~140 X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=ac50e257915950df8af50b2fec79bfbcc721a874 Make obscount disconnections visible There may be a problem with the obscount mechanism not working for some reason. --- diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 345b61cb..21940b43 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -885,14 +885,14 @@ sub time_out_pc92_routes my $o = $n->dec_obs; if ($o <= 0) { if (my $dxchan = DXChannel::get($n->call)) { - dbg("ROUTE: disconnecting local pc92 $dxchan->{call} on obscount") if isdbg('route'); + dbg("disconnecting local pc92 $dxchan->{call} on obscount"); $dxchan->disconnect; next; } my @parents = map {Route::Node::get($_)} $n->parents; for (@parents) { if ($_) { - dbg("ROUTE: deleting pc92 $_->{call} from $n->{call} on obscount") if isdbg('route'); + dbg("deleting pc92 $_->{call} from $n->{call} on obscount"); push @rdel, $n->del($_); } } diff --git a/perl/Version.pm b/perl/Version.pm index b0305ac9..7c702ce1 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,6 +11,6 @@ use vars qw($version $subversion $build); $version = '1.54'; $subversion = '0'; -$build = '74'; +$build = '75'; 1;