Skip to content

Commit

Permalink
Merge pull request #1067 from pmarks-net/master
Browse files Browse the repository at this point in the history
Replace "127.0.0.1" with "localhost" to support IPv6-only environments.
  • Loading branch information
menghanl authored Feb 8, 2017
2 parents f701157 + 97c325c commit 2a6bf61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interop/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var (
serviceAccountKeyFile = flag.String("service_account_key_file", "", "Path to service account json key file")
oauthScope = flag.String("oauth_scope", "", "The scope for OAuth2 tokens")
defaultServiceAccount = flag.String("default_service_account", "", "Email of GCE default service account")
serverHost = flag.String("server_host", "127.0.0.1", "The server host name")
serverHost = flag.String("server_host", "localhost", "The server host name")
serverPort = flag.Int("server_port", 10000, "The server port number")
tlsServerName = flag.String("server_host_override", "", "The server name use to verify the hostname returned by TLS handshake if it is not empty. Otherwise, --server_host is used.")
testCase = flag.String("test_case", "large_unary",
Expand Down

0 comments on commit 2a6bf61

Please sign in to comment.