Changeset 46
- Timestamp:
- 01/30/04 15:28:19 (8 years ago)
- Files:
-
- trunk/ChangeLog (modified) (1 diff, 1 prop)
- trunk/server/munin-update.in (modified) (8 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
- Property cvs2svn:cvs-rev changed from 1.19 to 1.20
r43 r46 29 29 * Added a new plugin generic/multips to count several procs in one graph. 30 30 (SF#885579) 31 * More timeouts in munin-update (Deb#222674). 31 32 32 33 munin (1.0.0pre1) trunk/server/munin-update.in
- Property cvs2svn:cvs-rev changed from 1.5 to 1.6
r30 r46 6 6 # 7 7 # $Log$ 8 # Revision 1.6 2004/01/30 14:28:19 jimmyo 9 # More timeouts in munin-update (Deb#222674). 10 # 8 11 # Revision 1.5 2004/01/29 18:19:58 jimmyo 9 12 # Made Munin compatible with perl 5.005_03 (patch by Lupe Christoph) (SF#884622) … … 325 328 326 329 use_old_config ($domain, $name, $oldnode); 327 logger (" Usingold configuration for $domain -> $name.");330 logger ("Attempting to use old configuration for $domain -> $name."); 328 331 } 329 332 } … … 430 433 ($node->{port} || $config->{domain}->{$domain}->{port} || 431 434 $config->{port} || "4949"), 432 'Proto' => "tcp" );435 'Proto' => "tcp", "Timeout" => $timeout); 433 436 my $err = ($socket ? "" : $!); 434 437 … … 441 444 442 445 if (!$socket) { 443 logger ("Could not connect to $name($node->{address}): $err - Usingold configuration");446 logger ("Could not connect to $name($node->{address}): $err - Attempting to use old configuration"); 444 447 # If we can't reach the client. Using old Configuration. 445 448 if (ref $oldnode) { … … 487 490 { 488 491 if (!$socket) { 489 logger ("Could not connect to $name($node->{address}): $err\n Usingold configuration");492 logger ("Could not connect to $name($node->{address}): $err\nAttempting to use old configuration"); 490 493 # If we can't reach the client. Using old Configuration. 491 494 if (ref $oldnode) { … … 579 582 if ($@) { 580 583 die unless ($@ =~ m/Could not run list/); 581 logger ("Could not get list from $node->{address}: $!\n Usingold configuration");584 logger ("Could not get list from $node->{address}: $!\nAttempting to use old configuration"); 582 585 if (ref $oldnode) { 583 586 $config->{domain}->{$domain}->{node}->{$name} = $oldnode; … … 610 613 logger("Client reported timeout in configuration of $servname"); 611 614 if ($oldnode->{client}->{$servname}) { 612 logger(" Usingold configuration");615 logger("Attempting to use old configuration"); 613 616 $config->{domain}->{$domain}->{node}->{$name}->{client}->{$servname} = $oldnode->{client}->{$servname}; 614 617 } else { … … 736 739 737 740 $config->{domain}->{$domain}->{node}->{$name} = $oldnode; 738 logger (" Usingold configuration for $domain -> $name.");741 logger ("Attempting to use old configuration for $domain -> $name."); 739 742 } 740 743
