diff options
Diffstat (limited to 'py/python/Glacier2.py')
-rw-r--r-- | py/python/Glacier2.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/py/python/Glacier2.py b/py/python/Glacier2.py index c1238e99025..da42d6d2981 100644 --- a/py/python/Glacier2.py +++ b/py/python/Glacier2.py @@ -133,11 +133,7 @@ Application.NoSignalHandling. if Application._adapter == None: if Application._router == None: raise SessionNotExistException() - # TODO: Depending on the resolution of - # http://bugzilla/bugzilla/show_bug.cgi?id=4264 the OA - # name could be an empty string. - uuid = Ice.generateUUID() - Application._adapter = self.communicator().createObjectAdapterWithRouter(uuid, Application._router) + Application._adapter = self.communicator().createObjectAdapterWithRouter("", Application._router) Application._adapter.activate() return Application._adapter |