diff options
author | Jose <jose@zeroc.com> | 2012-11-01 00:16:56 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-11-01 00:16:56 +0100 |
commit | 92067a985f1c7cf25d7b5ce3db8ddf80e89682c9 (patch) | |
tree | 12bab0a8a8dbfbacd6348a619995b42becd41007 /java/src/IceGridGUI/LiveDeployment/GraphView.java | |
parent | Fixed IceStorm metrics issues (diff) | |
download | ice-92067a985f1c7cf25d7b5ce3db8ddf80e89682c9.tar.bz2 ice-92067a985f1c7cf25d7b5ce3db8ddf80e89682c9.tar.xz ice-92067a985f1c7cf25d7b5ce3db8ddf80e89682c9.zip |
IceGridGUI metrics fixes:
* Update the GUI to also display disabled metrics
* Add enable/disable popup menu to metris views, correspoding to new
methods enableMetricsView/disableMetricsView in Metrics.ice
* Fixed ICE-4919 ConnectionRefusedException error dialog keeps popping up
* Fixed ICE-4917 bogus IceGrid GUI error message
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/GraphView.java')
-rw-r--r-- | java/src/IceGridGUI/LiveDeployment/GraphView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/GraphView.java b/java/src/IceGridGUI/LiveDeployment/GraphView.java index 19005db7458..1b6b75e9bbb 100644 --- a/java/src/IceGridGUI/LiveDeployment/GraphView.java +++ b/java/src/IceGridGUI/LiveDeployment/GraphView.java @@ -348,7 +348,8 @@ public class GraphView extends JFrame implements MetricsFieldContext } }, false); if(!(e instanceof Ice.ObjectNotExistException) && - !(e instanceof Ice.CommunicatorDestroyedException)) + !(e instanceof Ice.CommunicatorDestroyedException) && + !(e instanceof Ice.ConnectionRefusedException)) { handleError(m, e.toString()); } |