diff options
author | Yuchen Zeng <zyc@google.com> | 2017-10-15 19:00:16 -0700 |
---|---|---|
committer | Yuchen Zeng <zyc@google.com> | 2017-10-30 12:06:52 -0700 |
commit | 7fa814fbeb9599d9d921a705438d254cc1920781 (patch) | |
tree | 677e85c0198a1609bf9f0f18e8531ffa5dc6179b /src | |
parent | 6f9985e5513c40242afb74301a96f78bc790c2a1 (diff) |
Fix timeouts
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/filters/client_channel/backup_poller.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ext/filters/client_channel/backup_poller.cc b/src/core/ext/filters/client_channel/backup_poller.cc index 3b47b6630b..dc1f87bc6c 100644 --- a/src/core/ext/filters/client_channel/backup_poller.cc +++ b/src/core/ext/filters/client_channel/backup_poller.cc @@ -113,8 +113,8 @@ static void run_poller(grpc_exec_ctx* exec_ctx, void* arg, grpc_error* error) { backup_poller_shutdown_unref(exec_ctx, p); return; } - grpc_error* err = - grpc_pollset_work(exec_ctx, p->pollset, NULL, GRPC_MILLIS_INF_PAST); + grpc_error* err = grpc_pollset_work(exec_ctx, p->pollset, NULL, + grpc_exec_ctx_now(exec_ctx)); gpr_mu_unlock(p->pollset_mu); GRPC_LOG_IF_ERROR("Run client channel backup poller", err); grpc_timer_init(exec_ctx, &p->polling_timer, |