diff options
author | Craig Tiller <ctiller@google.com> | 2016-07-07 13:10:09 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-07-07 13:10:09 -0700 |
commit | fbf03c17355e65255862e91a938f4f5cfbcee51a (patch) | |
tree | 035061f5ba9cbc429ee1b28d7a95f32872a01387 /src/core | |
parent | 8e8027bad6c4b4720a27e29178a1431fc069f86a (diff) |
Fix high seqno tests, up runtimes for benchmark tests to flush more bugs
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/transport/connectivity_state.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/lib/transport/connectivity_state.c b/src/core/lib/transport/connectivity_state.c index 054f112127..68d05e3a85 100644 --- a/src/core/lib/transport/connectivity_state.c +++ b/src/core/lib/transport/connectivity_state.c @@ -179,6 +179,9 @@ void grpc_connectivity_state_set(grpc_exec_ctx *exec_ctx, while ((w = tracker->watchers) != NULL) { *w->current = tracker->current_state; tracker->watchers = w->next; + if (grpc_connectivity_state_trace) { + gpr_log(GPR_DEBUG, "NOTIFY: %p", w->notify); + } grpc_exec_ctx_sched(exec_ctx, w->notify, GRPC_ERROR_REF(tracker->current_error), NULL); gpr_free(w); |