diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-06-07 14:53:02 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-06-07 14:53:02 +0000 |
commit | 03bfc7aa095d4f77f4400a47de985a851ec3e701 (patch) | |
tree | 73b7e60bb72d56d604f7873215b86e8b894dccdc /cpp/test/IceGrid/session/Client.cpp | |
parent | Fixed bug where timeout, compress flag and connection id attribute were not (diff) | |
download | ice-03bfc7aa095d4f77f4400a47de985a851ec3e701.tar.bz2 ice-03bfc7aa095d4f77f4400a47de985a851ec3e701.tar.xz ice-03bfc7aa095d4f77f4400a47de985a851ec3e701.zip |
Fixed Glacier2 filtering in IceGrid and added tests.
Diffstat (limited to 'cpp/test/IceGrid/session/Client.cpp')
-rw-r--r-- | cpp/test/IceGrid/session/Client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/session/Client.cpp b/cpp/test/IceGrid/session/Client.cpp index b738fd02db2..f6df01882f0 100644 --- a/cpp/test/IceGrid/session/Client.cpp +++ b/cpp/test/IceGrid/session/Client.cpp @@ -27,7 +27,8 @@ main(int argc, char* argv[]) Ice::CommunicatorPtr communicator; try { - + Ice::PropertiesPtr properties = Ice::getDefaultProperties(argc, argv); + properties->setProperty("Ice.Warn.Connections", "0"); communicator = Ice::initialize(argc, argv); communicator->getProperties()->parseCommandLineOptions("", Ice::argsToStringSeq(argc, argv)); status = run(argc, argv, communicator); |