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

Merge pull request #916 from dklempner/not_original_vtable

Remove some debugging logs from the unary poll promote path
parents 6889a9a4 0e61b2d2
No related branches found
No related tags found
No related merge requests found
...@@ -267,7 +267,6 @@ static void unary_poll_do_promote(void *args, int success) { ...@@ -267,7 +267,6 @@ static void unary_poll_do_promote(void *args, int success) {
* and we don't have any mechanism to unbecome multipoller. */ * and we don't have any mechanism to unbecome multipoller. */
pollset->in_flight_cbs--; pollset->in_flight_cbs--;
if (pollset->shutting_down) { if (pollset->shutting_down) {
gpr_log(GPR_INFO, "Shutting down");
/* We don't care about this pollset anymore. */ /* We don't care about this pollset anymore. */
if (pollset->in_flight_cbs == 0) { if (pollset->in_flight_cbs == 0) {
do_shutdown_cb = 1; do_shutdown_cb = 1;
...@@ -275,7 +274,6 @@ static void unary_poll_do_promote(void *args, int success) { ...@@ -275,7 +274,6 @@ static void unary_poll_do_promote(void *args, int success) {
} else if (grpc_fd_is_orphaned(fd)) { } else if (grpc_fd_is_orphaned(fd)) {
/* Don't try to add it to anything, we'll drop our ref on it below */ /* Don't try to add it to anything, we'll drop our ref on it below */
} else if (pollset->vtable != original_vtable) { } else if (pollset->vtable != original_vtable) {
gpr_log(GPR_INFO, "Not original vtable");
pollset->vtable->add_fd(pollset, fd); pollset->vtable->add_fd(pollset, fd);
} else if (fd != pollset->data.ptr) { } else if (fd != pollset->data.ptr) {
grpc_fd *fds[2]; grpc_fd *fds[2];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment