diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-06-28 10:29:41 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-06-28 10:30:10 -0700 |
commit | 292d0107599eff2440feb622fdbab6f9eed6c0c5 (patch) | |
tree | 63fc21bd77ba9307008292e8c4da55ba13f22fe9 /tools/run_tests | |
parent | 94f0a50d1ea3208a0602f6eb67b6438bdb957387 (diff) |
give existing port_server time to respond
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 3798bf4e65..974d7a2960 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -1055,7 +1055,7 @@ def _start_port_server(port_server_port): try: version = int(urllib2.urlopen( 'http://localhost:%d/version_number' % port_server_port, - timeout=1).read()) + timeout=10).read()) print 'detected port server running version %d' % version running = True except Exception as e: |