summaryrefslogtreecommitdiff
path: root/demoscript/IceGrid/simple.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2010-01-08 05:34:50 -0800
committerMark Spruiell <mes@zeroc.com>2010-01-08 05:34:50 -0800
commita81459d5806194253f68dd3f5a2b3019737efcde (patch)
tree2ad02763f8d1e0c696fea5f45fab3051e47b572b /demoscript/IceGrid/simple.py
parentFixed bug 4587 - ant clean removes db directories from source distributions (diff)
downloadice-a81459d5806194253f68dd3f5a2b3019737efcde.tar.bz2
ice-a81459d5806194253f68dd3f5a2b3019737efcde.tar.xz
ice-a81459d5806194253f68dd3f5a2b3019737efcde.zip
demoscript fix for IceGrid/simple
Diffstat (limited to 'demoscript/IceGrid/simple.py')
-rwxr-xr-xdemoscript/IceGrid/simple.py5
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...",