This is an automated email from the ASF dual-hosted git repository. josephwu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit e6d160d39c3a76b2f813eda80061fab5b7edc066 Author: Joseph Wu <[email protected]> AuthorDate: Tue Jul 16 14:33:37 2019 -0700 Windows: Fixed poll socket connect override. This override was changed along with some SSL improvements in MESOS-9878. --- 3rdparty/libprocess/src/windows/poll_socket.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/3rdparty/libprocess/src/windows/poll_socket.cpp b/3rdparty/libprocess/src/windows/poll_socket.cpp index ab1deef..e2a8469 100644 --- a/3rdparty/libprocess/src/windows/poll_socket.cpp +++ b/3rdparty/libprocess/src/windows/poll_socket.cpp @@ -136,8 +136,7 @@ Future<std::shared_ptr<SocketImpl>> PollSocketImpl::accept() Future<Nothing> PollSocketImpl::connect( - const Address& address, - const Option<std::string>& /* peer_hostname */) + const Address& address) { // Need to hold a copy of `this` so that the underlying socket // doesn't end up getting reused before we return.
