summaryrefslogtreecommitdiff
path: root/python/test/Ice/dispatcher/Client.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2017-03-08 15:47:34 -0800
committerMark Spruiell <mes@zeroc.com>2017-03-08 15:47:34 -0800
commitfc32c2a7805365e7f40ab8a664f94efae35137da (patch)
tree9004df864027bfef52218772e88357e01d9bdf0c /python/test/Ice/dispatcher/Client.py
parentRefreshed Ice::optional (diff)
downloadice-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-xpython/test/Ice/dispatcher/Client.py3
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)