diff options
author | Matthew Newhook <matthew@zeroc.com> | 2009-09-10 11:10:50 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2009-09-10 11:10:50 -0230 |
commit | 5e9aa5a41a956688b54286802a3423febd570c9b (patch) | |
tree | 155dc14fc0b3aa6efa9a7d25930b5d0fbad18c77 /cpp/demo/Glacier2/callback/Client.cpp | |
parent | Fix for bug 3813 - added back DYLIBs install name for debug builds (diff) | |
download | ice-5e9aa5a41a956688b54286802a3423febd570c9b.tar.bz2 ice-5e9aa5a41a956688b54286802a3423febd570c9b.tar.xz ice-5e9aa5a41a956688b54286802a3423febd570c9b.zip |
http://bugzilla/bugzilla/show_bug.cgi?id=2839 - more fixes for 2839.
- Added refreshSession.
- Backed out change for ice_ping.
- Fixed bug with python config.glacier2.
Diffstat (limited to 'cpp/demo/Glacier2/callback/Client.cpp')
-rw-r--r-- | cpp/demo/Glacier2/callback/Client.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/demo/Glacier2/callback/Client.cpp b/cpp/demo/Glacier2/callback/Client.cpp index 6df6270d6f9..a2d0263ca27 100644 --- a/cpp/demo/Glacier2/callback/Client.cpp +++ b/cpp/demo/Glacier2/callback/Client.cpp @@ -26,15 +26,12 @@ public: virtual void runTimerTask() { - cout << "-> ice_ping" << endl; try { - _router->ice_ping(); - cout << "<- ice_ping" << endl; + _router->refreshSession(); } catch(const Ice::Exception& ex) { - cout << "<- ice_ping " << ex << endl; // Ignore } } |