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:42:55 UTC

[mesos] branch master updated (a09f906 -> 4678201)

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

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


    from a09f906  Added MESOS-9196 to 1.4.3 CHANGELOG.
     new a06c12e  Fixed protobuf map equality check in the URI disk profile adaptor.
     new 210dde4  Added MESOS-9308 to 1.7.1 CHANGELOG.
     new 5adc925  Added MESOS-9308 to 1.6.2 CHANGELOG.
     new 4678201  Added MESOS-9308 to 1.5.2 CHANGELOG.

The 4 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                                                  | 3 +++
 src/resource_provider/storage/uri_disk_profile_adaptor.cpp | 2 ++
 2 files changed, 5 insertions(+)


[mesos] 02/04: 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 master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 210dde439366e75c7e40551380f017eb349ba9c0
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 3fde12d..8ff06a5 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.


[mesos] 01/04: 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 master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit a06c12ebb9bf77c99bd87727206e4a02cee04d09
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] 03/04: 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 master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 5adc9257d42f6b40ccfa4d79cacca6120c564251
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 8ff06a5..3ab5794 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -400,6 +400,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.
 
 ** Improvement
   * [MESOS-9189] - Include 'Connection: close' header in master streaming API responses.


[mesos] 04/04: Added MESOS-9308 to 1.5.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 master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 4678201ae811af21ff3b5dcfa4246f4e1ef1a230
Author: Chun-Hung Hsiao <ch...@umich.edu>
AuthorDate: Wed Oct 10 22:36:50 2018 -0700

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

diff --git a/CHANGELOG b/CHANGELOG
index 3ab5794..f63596e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -832,6 +832,7 @@ Release Notes - Mesos - Version 1.5.2 (WIP)
   * [MESOS-9196] - Removing rootfs mounts may fail with EBUSY.
   * [MESOS-9267] - Mesos agent crashes when CNI network is not configured but used.
   * [MESOS-9279] - Docker Containerizer 'usage' call might be expensive if mount table is big.
+  * [MESOS-9308] - URI disk profile adaptor could deadlock.
 
 ** Improvement
   * [MESOS-9189] - Include 'Connection: close' header in master streaming API responses.