From: Dirk Koopman Date: Sun, 31 Oct 2010 16:26:30 +0000 (+0000) Subject: increase PC92 A/D slug time to 5 minutes X-Git-Tag: 1.56~18 X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=7109670a3a50576caa435e9ee85b1aa0de15b69b increase PC92 A/D slug time to 5 minutes --- diff --git a/Changes b/Changes index 883f35e5..75e74ad4 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +31Oct10======================================================================= +1. Increase PC92 A/D "slug" time to 5 minutes. 29Oct10======================================================================= 1. Allow Jim AD1C to track the changes to the cluster in realtime using the debug system (set/debug cluster). diff --git a/perl/DXProtHandle.pm b/perl/DXProtHandle.pm index 14e7766d..81cde0bf 100644 --- a/perl/DXProtHandle.pm +++ b/perl/DXProtHandle.pm @@ -49,7 +49,7 @@ use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restim $pc9x_dupe_age = 60; # catch loops of circular (usually) D records $pc10_dupe_age = 45; # just something to catch duplicate PC10->PC93 conversions -$pc92_slug_changes = 60; # slug any changes going outward for this long +$pc92_slug_changes = 60*5; # slug any changes going outward for this long $last_pc92_slug = 0; # the last time we sent out any delayed add or del PC92s $pc9x_time_tolerance = 15*60; # the time on a pc9x is allowed to be out by this amount $pc9x_past_age = (122*60)+ # maximum age in the past of a px9x (a config record might be the only diff --git a/perl/Version.pm b/perl/Version.pm index 1d6f99af..566df0d4 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,7 +11,7 @@ use vars qw($version $subversion $build $gitversion); $version = '1.55'; $subversion = '0'; -$build = '81'; -$gitversion = '67e8ed5'; +$build = '82'; +$gitversion = 'b7512d7'; 1;