diff options
Diffstat (limited to 'python/test/Ice/location/Server.py')
-rwxr-xr-x | python/test/Ice/location/Server.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/python/test/Ice/location/Server.py b/python/test/Ice/location/Server.py index debd8d06d28..b9e8f55e9ad 100755 --- a/python/test/Ice/location/Server.py +++ b/python/test/Ice/location/Server.py @@ -89,7 +89,7 @@ class ServerManagerI(Test.ServerManager): self._initData.properties.setProperty("TestAdapter2.AdapterId", "TestAdapter2") def startServer(self, current=None): - + # # Simulate a server: create a new communicator and object # adapter. The object adapter is started on a system allocated @@ -190,10 +190,6 @@ except: status = False if communicator: - try: - communicator.destroy() - except: - traceback.print_exc() - status = False + communicator.destroy() sys.exit(not status) |