You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2019/05/17 11:54:15 UTC

[mesos] branch 1.7.x updated: Fixed the broken backport for MESOS-9787.

This is an automated email from the ASF dual-hosted git repository.

bmahler pushed a commit to branch 1.7.x
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/1.7.x by this push:
     new 4a2949c  Fixed the broken backport for MESOS-9787.
4a2949c is described below

commit 4a2949cb075ab02086fd9e3065bcab83855bf9cc
Author: Benjamin Mahler <bm...@apache.org>
AuthorDate: Fri May 17 12:27:09 2019 +0200

    Fixed the broken backport for MESOS-9787.
---
 3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp b/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp
index 520ec41..8501ec6 100644
--- a/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp
+++ b/3rdparty/libprocess/src/posix/libevent/libevent_ssl_socket.cpp
@@ -1162,7 +1162,8 @@ void LibeventSSLSocketImpl::accept_SSL_callback(AcceptRequest* request)
             // Due to MESOS-9339, a slow reverse DNS lookup will cause
             // serious issues as it blocks the event loop thread.
             if (watch.elapsed() > Milliseconds(100)) {
-              LOG(WARNING) << "Reverse DNS lookup for '" << *request->ip << "'"
+              LOG(WARNING) << "Reverse DNS lookup for"
+                           << " '" << request->ip.get() << "'"
                            << " took " << watch.elapsed().ms() << "ms"
                            << ", slowness is problematic (see MESOS-9339)";
             }