diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-03-27 10:48:32 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-03-27 10:48:32 +0100 |
commit | a78ae7816927dcbccd3db0db1014265dff19dbea (patch) | |
tree | 0b0c0f8ce3dd5e79773f70d7994a7bcd6e0adb00 /demoscript/IceGrid/icebox.py | |
parent | updated dependencies. (diff) | |
download | ice-a78ae7816927dcbccd3db0db1014265dff19dbea.tar.bz2 ice-a78ae7816927dcbccd3db0db1014265dff19dbea.tar.xz ice-a78ae7816927dcbccd3db0db1014265dff19dbea.zip |
Fixed bug in icegridadmin which would cause it to spin if the session timeout = 0
Diffstat (limited to 'demoscript/IceGrid/icebox.py')
-rwxr-xr-x | demoscript/IceGrid/icebox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demoscript/IceGrid/icebox.py b/demoscript/IceGrid/icebox.py index 3826cb30631..e6cd80247b8 100755 --- a/demoscript/IceGrid/icebox.py +++ b/demoscript/IceGrid/icebox.py @@ -50,7 +50,7 @@ def run(clientStr, desc = 'application'): admin.sendline("application add \'%s.xml\'" %(desc)) admin.expect('>>>') admin.sendline("server start IceBox") - admin.expect('>>>') + admin.expect('>>>', timeout=15) print "ok" print "testing client...", |