aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/iomgr
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-08 12:14:03 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-08 12:14:03 -0700
commitbc81291f7e37c4163ed4490af5ef02e88acc7f63 (patch)
tree0cf08d755658133e42353852478b7c56dd24d9db /src/core/iomgr
parenta4836ad77bb469a9fedd5234833a269252cf679e (diff)
Remove check for no workers
I *believe* this is actually safe, and the assert was errantly copy-pasted a while back. Fixes #3022
Diffstat (limited to 'src/core/iomgr')
-rw-r--r--src/core/iomgr/pollset_multipoller_with_epoll.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/iomgr/pollset_multipoller_with_epoll.c b/src/core/iomgr/pollset_multipoller_with_epoll.c
index fe66ebed77..8f62ce2954 100644
--- a/src/core/iomgr/pollset_multipoller_with_epoll.c
+++ b/src/core/iomgr/pollset_multipoller_with_epoll.c
@@ -99,7 +99,6 @@ static void perform_delayed_add(void *arg, int iomgr_status) {
if (da->pollset->shutting_down) {
/* We don't care about this pollset anymore. */
if (da->pollset->in_flight_cbs == 0 && !da->pollset->called_shutdown) {
- GPR_ASSERT(!grpc_pollset_has_workers(da->pollset));
da->pollset->called_shutdown = 1;
do_shutdown_cb = 1;
}