interop: increase xds test client rpc timeout (#3579)

This commit is contained in:
Eric Gribkoff
2020-04-28 19:30:16 -07:00
committed by GitHub
parent 80ff2c9d78
commit 695da821e9

View File

@ -51,7 +51,7 @@ var (
numChannels = flag.Int("num_channels", 1, "Num of channels")
printResponse = flag.Bool("print_response", false, "Write RPC response to stdout")
qps = flag.Int("qps", 1, "QPS per channel")
rpcTimeout = flag.Duration("rpc_timeout", 10*time.Second, "Per RPC timeout")
rpcTimeout = flag.Duration("rpc_timeout", 20*time.Second, "Per RPC timeout")
server = flag.String("server", "localhost:8080", "Address of server to connect to")
statsPort = flag.Int("stats_port", 8081, "Port to expose peer distribution stats service")