Skip to content
Snippets Groups Projects
Commit cbcdb402 authored by Yuchen Zeng's avatar Yuchen Zeng
Browse files

Fix mac windows failures

parent b4b6a0e5
No related branches found
No related tags found
No related merge requests found
...@@ -477,6 +477,7 @@ static void init_transport(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t, ...@@ -477,6 +477,7 @@ static void init_transport(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t,
t->ping_state.pings_before_data_required = t->ping_state.pings_before_data_required =
t->ping_policy.max_pings_without_data; t->ping_policy.max_pings_without_data;
t->ping_state.is_delayed_ping_timer_set = false;
/** Start client-side keepalive pings */ /** Start client-side keepalive pings */
if (t->is_client) { if (t->is_client) {
...@@ -1395,6 +1396,7 @@ static void send_ping_locked(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t, ...@@ -1395,6 +1396,7 @@ static void send_ping_locked(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t,
static void retry_initiate_ping_locked(grpc_exec_ctx *exec_ctx, void *tp, static void retry_initiate_ping_locked(grpc_exec_ctx *exec_ctx, void *tp,
grpc_error *error) { grpc_error *error) {
grpc_chttp2_transport *t = tp; grpc_chttp2_transport *t = tp;
t->ping_state.is_delayed_ping_timer_set = false;
grpc_chttp2_initiate_write(exec_ctx, t, false, "retry_send_ping"); grpc_chttp2_initiate_write(exec_ctx, t, false, "retry_send_ping");
} }
......
...@@ -103,6 +103,7 @@ typedef struct { ...@@ -103,6 +103,7 @@ typedef struct {
gpr_timespec last_ping_sent_time; gpr_timespec last_ping_sent_time;
int pings_before_data_required; int pings_before_data_required;
grpc_timer delayed_ping_timer; grpc_timer delayed_ping_timer;
bool is_delayed_ping_timer_set;
} grpc_chttp2_repeated_ping_state; } grpc_chttp2_repeated_ping_state;
/* deframer state for the overall http2 stream of bytes */ /* deframer state for the overall http2 stream of bytes */
......
...@@ -101,12 +101,14 @@ static void maybe_initiate_ping(grpc_exec_ctx *exec_ctx, ...@@ -101,12 +101,14 @@ static void maybe_initiate_ping(grpc_exec_ctx *exec_ctx,
"Ping delayed [%p]: not enough time elapsed since last ping", "Ping delayed [%p]: not enough time elapsed since last ping",
t->peer_string); t->peer_string);
} }
if (!t->ping_state.is_delayed_ping_timer_set) {
grpc_timer_init(exec_ctx, &t->ping_state.delayed_ping_timer, t->ping_state.is_delayed_ping_timer_set = true;
gpr_time_add(t->ping_state.last_ping_sent_time, grpc_timer_init(exec_ctx, &t->ping_state.delayed_ping_timer,
t->ping_policy.min_time_between_pings), gpr_time_add(t->ping_state.last_ping_sent_time,
&t->retry_initiate_ping_locked, t->ping_policy.min_time_between_pings),
gpr_now(GPR_CLOCK_MONOTONIC)); &t->retry_initiate_ping_locked,
gpr_now(GPR_CLOCK_MONOTONIC));
}
return; return;
} }
/* coalesce equivalent pings into this one */ /* coalesce equivalent pings into this one */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment