You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ka...@apache.org on 2018/08/21 13:23:09 UTC

[mesos] branch 1.7.x updated (679f8f3 -> 536d4b2)

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

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


    from 679f8f3  Highlighted MESOS-9122 in the 1.7.0 CHANGELOG.
     new d2f305a  Updated Zookeeper patch to fix format error.
     new 536d4b2  Added MESOS-9170 to 1.7.0 CHANGELOG.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 3rdparty/zookeeper-3.4.8.patch | 25 +++++++++++++++++++++++++
 CHANGELOG                      |  1 +
 2 files changed, 26 insertions(+)


[mesos] 02/02: Added MESOS-9170 to 1.7.0 CHANGELOG.

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 536d4b275e6641cec922fe7bed85bd303e89850c
Author: Kapil Arya <ka...@mesosphere.io>
AuthorDate: Tue Aug 21 09:09:46 2018 -0400

    Added MESOS-9170 to 1.7.0 CHANGELOG.
---
 CHANGELOG | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG b/CHANGELOG
index f55c356..b07ec07 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -139,6 +139,7 @@ All Resolved Issues:
   * [MESOS-9156] - StorageLocalResourceProviderProcess can deadlock
   * [MESOS-9160] - Failed to compile gRPC when the build path contains symlinks.
   * [MESOS-9163] - `UriDiskProfileAdaptor` should not update profiles when a poll returns a non-OK HTTP status.
+  * [MESOS-9170] - Zookeeper doesn't compile with newer gcc due to format error.
 
 ** Documentation
   * [MESOS-8740] - Update description of a Containerizer interface.


[mesos] 01/02: Updated Zookeeper patch to fix format error.

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d2f305a8c8b247932b3f19edc672db1acac4e5ec
Author: Kapil Arya <ka...@mesosphere.io>
AuthorDate: Wed Aug 15 19:26:39 2018 -0400

    Updated Zookeeper patch to fix format error.
    
    This is a backport of:
      https://github.com/apache/zookeeper/pull/559/
    
    Review: https://reviews.apache.org/r/68370/
---
 3rdparty/zookeeper-3.4.8.patch | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/3rdparty/zookeeper-3.4.8.patch b/3rdparty/zookeeper-3.4.8.patch
index edfc3b5..0a21596 100644
--- a/3rdparty/zookeeper-3.4.8.patch
+++ b/3rdparty/zookeeper-3.4.8.patch
@@ -1745,3 +1745,28 @@ index dc3ab43e3..000000000
 -	<Globals>
 -	</Globals>
 -</VisualStudioProject>
+From 4343ef1db40ebe2a744326000eff725deb55f97f Mon Sep 17 00:00:00 2001
+From: Kapil Arya <ka...@mesosphere.io>
+Date: Thu, 16 Aug 2018 15:53:53 -0400
+Subject: [PATCH] Backported a format error fix.
+
+This patch backports https://github.com/apache/zookeeper/pull/559.
+---
+ src/c/src/zookeeper.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/c/src/zookeeper.c b/src/c/src/zookeeper.c
+index 1ba90afa..a4c28e36 100644
+--- a/src/c/src/zookeeper.c
++++ b/src/c/src/zookeeper.c
+@@ -3440,7 +3440,7 @@ int zoo_add_auth(zhandle_t *zh,const char* scheme,const char* cert,
+ static const char* format_endpoint_info(const struct sockaddr_storage* ep)
+ {
+     static char buf[128];
+-    char addrstr[128];
++    char addrstr[INET6_ADDRSTRLEN];
+     void *inaddr;
+ #ifdef WIN32
+     char * addrstring;
+--
+2.18.0