diff options
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 64a53d86a64..652b2ebdcf3 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -97,7 +97,7 @@ def getAdapterReady(serverPipe): def waitServiceReady(pipe, token): - while True: + while 1: output = pipe.readline().strip() @@ -110,7 +110,7 @@ def waitServiceReady(pipe, token): def printOutputFromPipe(pipe): - while True: + while 1: line = pipe.readline() |