diff options
author | Eric Gribkoff <ericgribkoff@google.com> | 2017-03-16 09:06:49 -0700 |
---|---|---|
committer | Eric Gribkoff <ericgribkoff@google.com> | 2017-03-17 00:46:01 -0700 |
commit | f9d0804daadf3cc22d406eaf6d603a3dda9e0460 (patch) | |
tree | 1059812d5a87d7d130379cebaea1b5b993d9f330 /tools | |
parent | 92a5d28a4c0afc4cfd1f7eaba5d876a53a314986 (diff) |
disable wait for healthy
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_interop_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py index b5977bf4f3..55e729ace3 100755 --- a/tools/run_tests/run_interop_tests.py +++ b/tools/run_tests/run_interop_tests.py @@ -964,7 +964,8 @@ try: manual_cmd_log=server_manual_cmd_log) if not args.manual_run: job = dockerjob.DockerJob(spec) - job.wait_for_healthy(timeout_seconds=240) + #job.wait_for_healthy(timeout_seconds=240) + print(subprocess.check_output(['docker', 'version'])) server_jobs[lang] = job http2_badserver_ports = tuple([ job.mapped_port(_DEFAULT_SERVER_PORT + i) |