aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/tcp_server_utils_posix_common.cc
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-04-02 18:32:06 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-04-20 14:55:07 -0700
commitadc733f0249eaaabfed5ae9949af1ac416969cef (patch)
treed3b2f5403538c6048c637609277951d5a9e005ae /src/core/lib/iomgr/tcp_server_utils_posix_common.cc
parent6f3cadb687f7d9e3da3d49b18c3f68463352db6b (diff)
Make linux polling engines capable of tracking errors separately with
backward compatibility.
Diffstat (limited to 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc')
-rw-r--r--src/core/lib/iomgr/tcp_server_utils_posix_common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/tcp_server_utils_posix_common.cc b/src/core/lib/iomgr/tcp_server_utils_posix_common.cc
index 9f4e58ca16..cd036260c2 100644
--- a/src/core/lib/iomgr/tcp_server_utils_posix_common.cc
+++ b/src/core/lib/iomgr/tcp_server_utils_posix_common.cc
@@ -105,7 +105,7 @@ static grpc_error* add_socket_to_server(grpc_tcp_server* s, int fd,
s->tail = sp;
sp->server = s;
sp->fd = fd;
- sp->emfd = grpc_fd_create(fd, name);
+ sp->emfd = grpc_fd_create(fd, name, false);
memcpy(&sp->addr, addr, sizeof(grpc_resolved_address));
sp->port = port;
sp->port_index = port_index;