aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/client_config/subchannel.c
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2015-07-24 14:38:26 -0700
committerGravatar yang-g <yangg@google.com>2015-07-24 14:38:26 -0700
commitc9c69e27dad583249f7178dae9a7d949ff7e4246 (patch)
tree3c881f8a6f25a29c1e199e2d53b2b1a7d70c71a6 /src/core/client_config/subchannel.c
parent60b653bf35fad97f9b0187922ccea9cfb04f635d (diff)
Add reconnect interop test client and server
Diffstat (limited to 'src/core/client_config/subchannel.c')
-rw-r--r--src/core/client_config/subchannel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/client_config/subchannel.c b/src/core/client_config/subchannel.c
index 4d75994fdb..7247b78261 100644
--- a/src/core/client_config/subchannel.c
+++ b/src/core/client_config/subchannel.c
@@ -322,8 +322,8 @@ static void continue_connect(grpc_subchannel *c) {
static void start_connect(grpc_subchannel *c) {
c->backoff_delta = gpr_time_from_seconds(
GRPC_SUBCHANNEL_INITIAL_CONNECT_BACKOFF_SECONDS, GPR_TIMESPAN);
- c->next_attempt = gpr_time_add(
- gpr_now(GPR_CLOCK_MONOTONIC), c->backoff_delta);
+ c->next_attempt =
+ gpr_time_add(gpr_now(GPR_CLOCK_MONOTONIC), c->backoff_delta);
continue_connect(c);
}