diff options
author | Craig Tiller <ctiller@google.com> | 2016-05-13 15:59:09 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-05-13 15:59:09 -0700 |
commit | 2b59dbce3024bc14fa51b6e134df5ce015bb32c6 (patch) | |
tree | 729305546362dcfafe26b3ac526311af3d7118c3 /src/core/ext/client_config | |
parent | 23b6cdb59d8c7b03cfef727028abd3a6f1fc6e54 (diff) |
Fixes
Diffstat (limited to 'src/core/ext/client_config')
-rw-r--r-- | src/core/ext/client_config/subchannel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ext/client_config/subchannel.c b/src/core/ext/client_config/subchannel.c index 1a3e14f4cd..0c175cd6c7 100644 --- a/src/core/ext/client_config/subchannel.c +++ b/src/core/ext/client_config/subchannel.c @@ -607,7 +607,8 @@ static void on_alarm(grpc_exec_ctx *exec_ctx, void *arg, grpc_error *error) { } if (error == GRPC_ERROR_NONE) { gpr_log(GPR_INFO, "Failed to connect to channel, retrying"); - c->next_attempt = gpr_backoff_step(&c->backoff_state, gpr_now(GPR_CLOCK_MONOTONIC)); + c->next_attempt = + gpr_backoff_step(&c->backoff_state, gpr_now(GPR_CLOCK_MONOTONIC)); continue_connect(exec_ctx, c); gpr_mu_unlock(&c->mu); } else { |