diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | src/IvyIO.pm | 1 | ||||
-rwxr-xr-x | src/ivycontrolpanel | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 50a05f1..ff0744a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ivycontrolpanel (2.3) unstable; urgency=low + + * Ajout d'un mécanisme de polling pour détecter les problèmes de + performance. Cette fonctionnalité nécessite Ivy v4.18. + (contribution de JP Imbert) + + -- Daniel Etienne <etienne@cena.fr> Thu, 28 Sep 2006 15:49:19 +0200 + ivycontrolpanel (2.2) unstable; urgency=low * Optimisation des regexps ivy (correction d'un bug introduit en v2.0) diff --git a/src/IvyIO.pm b/src/IvyIO.pm index cc9aa8d..76dc968 100644 --- a/src/IvyIO.pm +++ b/src/IvyIO.pm @@ -151,7 +151,6 @@ sub receivePongCb($$) { my ($time, $appf) = @_; # time = ping/pong duration in ms - $received ++; #printf ("DBG> :$received: $appf [$time]".$appNameByhostAndPort{$appf}."\n"); &$pingcallback($appNameByhostAndPort{$appf}, $appf, $time); diff --git a/src/ivycontrolpanel b/src/ivycontrolpanel index 6848628..0bbc4d4 100755 --- a/src/ivycontrolpanel +++ b/src/ivycontrolpanel @@ -13,8 +13,8 @@ use Carp; # where you may find bitmap files use lib "/usr/share/ivycontrolpanel"; # where you may find the IvyIO and Agent modules -#use lib "/usr/lib/ivycontrolpanel"; -use lib "."; +use lib "/usr/lib/ivycontrolpanel"; +#use lib "."; # where you may find the FugueConfig module use lib "/usr/lib/ivylaunch"; |