Skip to content
Snippets Groups Projects
Commit e45a277b authored by Craig Tiller's avatar Craig Tiller
Browse files

Remove bogus assert

parent e00d7335
No related branches found
No related tags found
No related merge requests found
...@@ -669,7 +669,6 @@ static void end_worker(grpc_exec_ctx *exec_ctx, grpc_pollset *pollset, ...@@ -669,7 +669,6 @@ static void end_worker(grpc_exec_ctx *exec_ctx, grpc_pollset *pollset,
if (worker_hdl != NULL) *worker_hdl = NULL; if (worker_hdl != NULL) *worker_hdl = NULL;
worker->kick_state = KICKED; worker->kick_state = KICKED;
if (gpr_atm_no_barrier_load(&g_active_poller) == (gpr_atm)worker) { if (gpr_atm_no_barrier_load(&g_active_poller) == (gpr_atm)worker) {
GPR_ASSERT(!pollset->seen_inactive);
if (worker->next != worker && worker->next->kick_state == UNKICKED) { if (worker->next != worker && worker->next->kick_state == UNKICKED) {
GPR_ASSERT(worker->next->initialized_cv); GPR_ASSERT(worker->next->initialized_cv);
gpr_atm_no_barrier_store(&g_active_poller, (gpr_atm)worker->next); gpr_atm_no_barrier_store(&g_active_poller, (gpr_atm)worker->next);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment