diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-09-06 15:43:45 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-09-06 15:44:35 +0200 |
commit | 550ae394d7e3f69f89684284859aa905f99789f1 (patch) | |
tree | d51935b04bb57cd4076450876be608f2b8c8b46a /cpp/test/IceGrid/session/Client.cpp | |
parent | NetworkProxy warnings running with python_d - Close #443 (diff) | |
download | ice-550ae394d7e3f69f89684284859aa905f99789f1.tar.bz2 ice-550ae394d7e3f69f89684284859aa905f99789f1.tar.xz ice-550ae394d7e3f69f89684284859aa905f99789f1.zip |
Fixed IceGrid locking issue, fixes #503
Diffstat (limited to 'cpp/test/IceGrid/session/Client.cpp')
-rw-r--r-- | cpp/test/IceGrid/session/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/session/Client.cpp b/cpp/test/IceGrid/session/Client.cpp index efe250ee543..882ba448080 100644 --- a/cpp/test/IceGrid/session/Client.cpp +++ b/cpp/test/IceGrid/session/Client.cpp @@ -18,9 +18,9 @@ void Client::run(int argc, char** argv) { Ice::PropertiesPtr properties = createTestProperties(argc, argv); + properties->parseCommandLineOptions("", Ice::argsToStringSeq(argc, argv)); properties->setProperty("Ice.Warn.Connections", "0"); Ice::CommunicatorHolder communicator = initialize(argc, argv, properties); - communicator->getProperties()->parseCommandLineOptions("", Ice::argsToStringSeq(argc, argv)); void allTests(Test::TestHelper*); allTests(this); } |