Skip to content

Commit

Permalink
Merge pull request grpc#4635 from ctiller/spam_cleanup
Browse files Browse the repository at this point in the history
Spam cleanup
  • Loading branch information
sreecha committed Jan 7, 2016
2 parents bbaad2a + 4c219e6 commit 93cdb18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/iomgr/pollset_multipoller_with_poll_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ static void multipoll_with_poll_pollset_maybe_work_and_unlock(
GRPC_SCHEDULING_END_BLOCKING_REGION;

if (r < 0) {
gpr_log(GPR_ERROR, "poll() failed: %s", strerror(errno));
if (errno != EINTR) {
gpr_log(GPR_ERROR, "poll() failed: %s", strerror(errno));
}
for (i = 2; i < pfd_count; i++) {
grpc_fd_end_poll(exec_ctx, &watchers[i], 0, 0);
}
Expand Down

0 comments on commit 93cdb18

Please sign in to comment.