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

[mesos] branch 1.7.x updated (3e185f1 -> d0186a2)

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

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


    from 3e185f1  Added MESOS-9295 to 1.7.1 CHANGELOG.
     new 096e3da  Fixed protobuf map equality check in the URI disk profile adaptor.
     new d0186a2  Added MESOS-9308 to 1.7.1 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:
 CHANGELOG                                                  | 1 +
 src/resource_provider/storage/uri_disk_profile_adaptor.cpp | 2 ++
 2 files changed, 3 insertions(+)


[mesos] 01/02: Fixed protobuf map equality check in the URI disk profile adaptor.

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

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

commit 096e3daf88cd36978335391709a7824820881c88
Author: Chun-Hung Hsiao <ch...@umich.edu>
AuthorDate: Wed Oct 10 22:14:52 2018 -0700

    Fixed protobuf map equality check in the URI disk profile adaptor.
    
    Review: https://reviews.apache.org/r/68987
---
 src/resource_provider/storage/uri_disk_profile_adaptor.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/resource_provider/storage/uri_disk_profile_adaptor.cpp b/src/resource_provider/storage/uri_disk_profile_adaptor.cpp
index d214af8..6c998ef 100644
--- a/src/resource_provider/storage/uri_disk_profile_adaptor.cpp
+++ b/src/resource_provider/storage/uri_disk_profile_adaptor.cpp
@@ -74,6 +74,8 @@ bool operator==(
     if (iterator->second != right.at(iterator->first)) {
       return false;
     }
+
+    ++iterator;
   }
 
   return true;


[mesos] 02/02: Added MESOS-9308 to 1.7.1 CHANGELOG.

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

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

commit d0186a2cef8da2ba2af54185eee691b8a94cb305
Author: Chun-Hung Hsiao <ch...@umich.edu>
AuthorDate: Wed Oct 10 22:31:19 2018 -0700

    Added MESOS-9308 to 1.7.1 CHANGELOG.
---
 CHANGELOG | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG b/CHANGELOG
index 75be171..e734a7d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -16,6 +16,7 @@ Release Notes - Mesos - Version 1.7.1 (WIP)
   * [MESOS-9279] - Docker Containerizer 'usage' call might be expensive if mount table is big.
   * [MESOS-9283] - Docker containerizer actor can get backlogged with large number of containers.
   * [MESOS-9295] - Nested container launch could fail if the agent upgrade with new cgroup subsystems.
+  * [MESOS-9308] - URI disk profile adaptor could deadlock.
 
 ** Improvement:
   * [MESOS-6765] - Make the Resources wrapper "copy-on-write" to improve performance.