diff options
author | Mark Spruiell <mes@zeroc.com> | 2010-01-08 05:34:50 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2010-01-08 05:34:50 -0800 |
commit | a81459d5806194253f68dd3f5a2b3019737efcde (patch) | |
tree | 2ad02763f8d1e0c696fea5f45fab3051e47b572b /demoscript/IceGrid/simple.py | |
parent | Fixed bug 4587 - ant clean removes db directories from source distributions (diff) | |
download | ice-a81459d5806194253f68dd3f5a2b3019737efcde.tar.bz2 ice-a81459d5806194253f68dd3f5a2b3019737efcde.tar.xz ice-a81459d5806194253f68dd3f5a2b3019737efcde.zip |
demoscript fix for IceGrid/simple
Diffstat (limited to 'demoscript/IceGrid/simple.py')
-rwxr-xr-x | demoscript/IceGrid/simple.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/demoscript/IceGrid/simple.py b/demoscript/IceGrid/simple.py index 9d7696b1dd2..b04d2375a47 100755 --- a/demoscript/IceGrid/simple.py +++ b/demoscript/IceGrid/simple.py @@ -35,7 +35,10 @@ def run(clientStr, desc = 'application'): print "starting icegridnode...", sys.stdout.flush() node = Util.spawn(Util.getIceGridNode() + ' --Ice.Config=config.grid --Ice.PrintAdapterReady %s' % (args)) - node.expect('IceGrid.Registry.Internal ready\nIceGrid.Registry.Server ready\nIceGrid.Registry.Client ready\nIceGrid.Node ready') + node.expect('IceGrid.Registry.Internal ready') + node.expect('IceGrid.Registry.Server ready') + node.expect('IceGrid.Registry.Client ready') + node.expect('IceGrid.Node ready') print "ok" print "deploying application...", |