diff options
author | Craig Tiller <ctiller@google.com> | 2016-09-28 15:39:55 -0700 |
---|---|---|
committer | Muxi Yan <mxyan@google.com> | 2016-10-17 11:52:46 -0700 |
commit | 4e5a0163e01eb19ca21427b93392b7fd8e314693 (patch) | |
tree | 3af83000c9636d185ed4bc8edd0267588d8670f1 /src | |
parent | 544564e7f66865fb9502a2d0d2e959414524601d (diff) |
Fix copy/paste bug
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/client_config/subchannel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/client_config/subchannel.c b/src/core/ext/client_config/subchannel.c index ebf1310958..646e6027f8 100644 --- a/src/core/ext/client_config/subchannel.c +++ b/src/core/ext/client_config/subchannel.c @@ -353,7 +353,7 @@ grpc_subchannel *grpc_subchannel_create(grpc_exec_ctx *exec_ctx, } else if (0 == strcmp(c->args->args[i].key, GRPC_ARG_INITIAL_RECONNECT_BACKOFF_MS)) { fixed_reconnect_backoff = false; - max_backoff_ms = grpc_channel_arg_get_integer( + initial_backoff_ms = grpc_channel_arg_get_integer( &c->args->args[i], (grpc_integer_options){initial_backoff_ms, 100, INT_MAX}); } |