diff options
author | Yuchen Zeng <zyc@google.com> | 2017-05-18 19:07:54 -0700 |
---|---|---|
committer | Yuchen Zeng <zyc@google.com> | 2017-05-18 19:07:54 -0700 |
commit | 72f70a5a5d3a438a00e3ac73a908344693c274e9 (patch) | |
tree | 5f56edcacb01f3aa3ae03f0bec46839b584c5bf0 /tools | |
parent | 3a1104ffa348cc92f1fc3aa7e58db4d3ad408ebe (diff) |
Test the c-ares resovler on Jenkins, should be removed before submission
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 196e26e1b6..7b3306d030 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -254,7 +254,8 @@ class CLanguage(object): _ROOT + '/src/core/tsi/test_creds/ca.pem', 'GRPC_POLL_STRATEGY': polling_strategy, 'GRPC_VERBOSITY': 'DEBUG'} - resolver = os.environ.get('GRPC_DNS_RESOLVER', None); + # TODO(zyc): change this back before submission + resolver = 'ares'; if resolver: env['GRPC_DNS_RESOLVER'] = resolver shortname_ext = '' if polling_strategy=='all' else ' GRPC_POLL_STRATEGY=%s' % polling_strategy |