Do not abort. Just fail softly

pull/16161/head
Yash Tibrewal 7 years ago
parent 35925d5863
commit 7a0e389a73
  1. 5
      src/core/lib/iomgr/ev_poll_posix.cc

@ -570,8 +570,9 @@ static void fd_set_writable(grpc_fd* fd) {
}
static void fd_set_error(grpc_fd* fd) {
gpr_log(GPR_ERROR, "Polling engine does not support tracking errors.");
abort();
if (grpc_polling_trace.enabled()) {
gpr_log(GPR_ERROR, "Polling engine does not support tracking errors.");
}
}
static uint32_t fd_begin_poll(grpc_fd* fd, grpc_pollset* pollset,

Loading…
Cancel
Save