diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-03-14 18:47:45 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-03-14 18:47:45 +0100 |
commit | 1ec8426013773ceb6b649137b7016793065d6c44 (patch) | |
tree | bcdf2e9f0bd4eba61e08aebd61e5801e4fdf04dd /java/src/IceGridGUI/LiveDeployment/Service.java | |
parent | Bug 2787 (diff) | |
download | ice-1ec8426013773ceb6b649137b7016793065d6c44.tar.bz2 ice-1ec8426013773ceb6b649137b7016793065d6c44.tar.xz ice-1ec8426013773ceb6b649137b7016793065d6c44.zip |
Fixed bug 2684 + collocation optimization bug
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/Service.java')
-rwxr-xr-x | java/src/IceGridGUI/LiveDeployment/Service.java | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/Service.java b/java/src/IceGridGUI/LiveDeployment/Service.java index c254d88d900..bceae0538f3 100755 --- a/java/src/IceGridGUI/LiveDeployment/Service.java +++ b/java/src/IceGridGUI/LiveDeployment/Service.java @@ -194,13 +194,7 @@ class Service extends ListArrayTreeNode DeploymentException { AdminSessionPrx session = getRoot().getCoordinator().getSession(); - FileIteratorPrx result = session.openServerLog(_parent.getId(), fPath, count); - if(getRoot().getCoordinator().getCommunicator().getDefaultRouter() == null) - { - result = FileIteratorPrxHelper.uncheckedCast( - result.ice_endpoints(session.ice_getEndpoints())); - } - return result; + return session.openServerLog(_parent.getId(), fPath, count); } public String getTitle() |