Skip to content

Commit 9e872f4

Browse files
committed
fix(host): revert unnecessary poll event changes
Signed-off-by: danbugs <danilochiarlone@gmail.com>
1 parent e22df91 commit 9e872f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

host/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1824,7 +1824,7 @@ fn hl_sleep_poll_sockets(
18241824
.values()
18251825
.map(|hs| libc::pollfd {
18261826
fd: hs.socket.as_raw_fd(),
1827-
events: libc::POLLIN | libc::POLLERR,
1827+
events: libc::POLLIN | libc::POLLOUT | libc::POLLERR,
18281828
revents: 0,
18291829
})
18301830
.collect();

0 commit comments

Comments
 (0)