diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-02-29 16:43:26 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-02-29 16:43:26 -0800 |
commit | f8492f64d0f533552e9ef2f15a3807d6b6016b6a (patch) | |
tree | f374a317252c60c9a839445f97b8031284dab0ae /py/test/Ice/blobject/Client.py | |
parent | updating third-party versions, adding x64 & Python notes (diff) | |
download | ice-f8492f64d0f533552e9ef2f15a3807d6b6016b6a.tar.bz2 ice-f8492f64d0f533552e9ef2f15a3807d6b6016b6a.tar.xz ice-f8492f64d0f533552e9ef2f15a3807d6b6016b6a.zip |
SSL fixes for Python
Diffstat (limited to 'py/test/Ice/blobject/Client.py')
-rw-r--r-- | py/test/Ice/blobject/Client.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/py/test/Ice/blobject/Client.py b/py/test/Ice/blobject/Client.py index b0645fc0552..b402d0e8145 100644 --- a/py/test/Ice/blobject/Client.py +++ b/py/test/Ice/blobject/Client.py @@ -53,13 +53,15 @@ def run(args, communicator, sync): hello.shutdown() return True +argv = sys.argv[:] # Clone the arguments to use again later + try: initData = Ice.InitializationData() - initData.properties = Ice.createProperties(sys.argv) + initData.properties = Ice.createProperties(argv) initData.properties.setProperty('Ice.Warn.Dispatch', '0') - communicator = Ice.initialize(sys.argv, initData) + communicator = Ice.initialize(argv, initData) router = RouterI.RouterI(communicator, False) - print "testing async blobject... ", + print "testing async blobject...", sys.stdout.flush() status = run(sys.argv, communicator, False) print "ok" @@ -82,7 +84,7 @@ if status: initData.properties.setProperty('Ice.Warn.Dispatch', '0') communicator = Ice.initialize(sys.argv, initData) router = RouterI.RouterI(communicator, True) - print "testing sync blobject... ", + print "testing sync blobject...", sys.stdout.flush() status = run(sys.argv, communicator, True) print "ok" |