diff options
author | Jose <jose@zeroc.com> | 2018-08-15 09:01:24 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-08-15 09:03:34 +0200 |
commit | c935484f8a997505a75f9796eb4d78563a414adf (patch) | |
tree | 34d7deac6fb6a70e4a601e58429f0d9b0b534bc1 /python/test/Ice/binding/Server.py | |
parent | Fix python Slice/escape test failure running with workers (diff) | |
download | ice-c935484f8a997505a75f9796eb4d78563a414adf.tar.bz2 ice-c935484f8a997505a75f9796eb4d78563a414adf.tar.xz ice-c935484f8a997505a75f9796eb4d78563a414adf.zip |
Fix sockect exception in python binding test when running with workers
Diffstat (limited to 'python/test/Ice/binding/Server.py')
-rwxr-xr-x | python/test/Ice/binding/Server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/test/Ice/binding/Server.py b/python/test/Ice/binding/Server.py index c720f9919ac..ddec6ef0a34 100755 --- a/python/test/Ice/binding/Server.py +++ b/python/test/Ice/binding/Server.py @@ -18,7 +18,7 @@ class Server(TestHelper): def run(self, args): - with self.initialize(args) as communicator: + with self.initialize(args=args) as communicator: communicator.getProperties().setProperty("TestAdapter.Endpoints", self.getTestEndpoint()) adapter = communicator.createObjectAdapter("TestAdapter") |