diff options
author | Mark Spruiell <mes@zeroc.com> | 2017-03-08 15:47:34 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2017-03-08 15:47:34 -0800 |
commit | fc32c2a7805365e7f40ab8a664f94efae35137da (patch) | |
tree | 9004df864027bfef52218772e88357e01d9bdf0c /python/test/Ice/dispatcher/Client.py | |
parent | Refreshed Ice::optional (diff) | |
download | ice-fc32c2a7805365e7f40ab8a664f94efae35137da.tar.bz2 ice-fc32c2a7805365e7f40ab8a664f94efae35137da.tar.xz ice-fc32c2a7805365e7f40ab8a664f94efae35137da.zip |
- ICE-6845 - More dispatcher fixes for Python
- Deprecated the InitializationData.threadHook member
- Added threadStart and threadStop members to InitializationData
- InitializationData.batchRequestInterceptor can now be a callable
Diffstat (limited to 'python/test/Ice/dispatcher/Client.py')
-rwxr-xr-x | python/test/Ice/dispatcher/Client.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/test/Ice/dispatcher/Client.py b/python/test/Ice/dispatcher/Client.py index e885ab31545..1047a56e082 100755 --- a/python/test/Ice/dispatcher/Client.py +++ b/python/test/Ice/dispatcher/Client.py @@ -37,7 +37,8 @@ try: # initData.properties.setProperty("Ice.TCP.SndSize", "50000"); - initData.dispatcher = Dispatcher.Dispatcher() + d = Dispatcher.Dispatcher() + initData.dispatcher = d.dispatch with Ice.initialize(sys.argv, initData) as communicator: status = run(sys.argv, communicator) |