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:27 UTC

[mesos] branch 1.6.x updated (193a446 -> c3f6cc0)

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

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


    from 193a446  Added MESOS-9151 to 1.6.2 CHANGELOG.
     new f1e71c6  Fixed protobuf map equality check in the URI disk profile adaptor.
     new c3f6cc0  Added MESOS-9308 to 1.6.2 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.6.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit f1e71c64bb48b99a302e80bddbba0d95b08c63ee
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 614590e..18493b1 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.6.2 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.6.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit c3f6cc098245d06f883177dfc5be398c1bc0af50
Author: Chun-Hung Hsiao <ch...@umich.edu>
AuthorDate: Wed Oct 10 22:35:11 2018 -0700

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

diff --git a/CHANGELOG b/CHANGELOG
index 30e10a7..66b2120 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -25,6 +25,7 @@ Release Notes - Mesos - Version 1.6.2 (WIP)
   * [MESOS-9274] - v1 JAVA scheduler library can drop TEARDOWN upon destruction.
   * [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-9308] - URI disk profile adaptor could deadlock.
 
 
 Release Notes - Mesos - Version 1.6.1