aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python
diff options
context:
space:
mode:
authorGravatar Paul Marks <paul@pmarks.net>2017-02-16 16:34:42 -0800
committerGravatar GitHub <noreply@github.com>2017-02-16 16:34:42 -0800
commit69c0437e7558795a2badb6b7ca5222820d2f098f (patch)
tree884afa8ed22ad939ea54184e989d80adb5135ed4 /src/python
parent20ce37694b54ddd94bc8974ea166ed19033201a0 (diff)
parent3a5bba0a2034a2dffbfeb7a30281f8ac43d5ce59 (diff)
Merge pull request #9634 from pmarks-net/master
Connect to "localhost" from interop clients.
Diffstat (limited to 'src/python')
-rw-r--r--src/python/grpcio_tests/tests/interop/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio_tests/tests/interop/client.py b/src/python/grpcio_tests/tests/interop/client.py
index 833818e662..97f6843d3c 100644
--- a/src/python/grpcio_tests/tests/interop/client.py
+++ b/src/python/grpcio_tests/tests/interop/client.py
@@ -45,7 +45,7 @@ def _args():
'--server_host',
help='the host to which to connect',
type=str,
- default="127.0.0.1")
+ default="localhost")
parser.add_argument(
'--server_port', help='the port to which to connect', type=int)
parser.add_argument(