You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by gi...@apache.org on 2019/01/30 19:41:18 UTC

[mesos] branch 1.5.x updated (edebf36 -> 3b0a04c)

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

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


    from edebf36  Added MESOS-9210 to 1.5.3 CHANGELOG.
     new cda45e5  Fixed a test flakiness in ROOT_CleanupAfterReboot.
     new 3b0a04c  Added MESOS-9533 to 1.5.3 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/tests/containerizer/cni_isolator_tests.cpp | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)


[mesos] 02/02: Added MESOS-9533 to 1.5.3 CHANGELOG.

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

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

commit 3b0a04c72e6b040cf8a4b6502bc691880f541b8d
Author: Gilbert Song <so...@gmail.com>
AuthorDate: Wed Jan 30 11:37:26 2019 -0800

    Added MESOS-9533 to 1.5.3 CHANGELOG.
    
    (cherry picked from commit 3acd35c9fa58f1888efa70dc9c118a9b923cc052)
---
 CHANGELOG | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG b/CHANGELOG
index bbfe4ca..6216bb8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -5,6 +5,7 @@ Release Notes - Mesos - Version 1.5.3 (WIP)
 ** Bug
   * [MESOS-9210] - Mesos v1 scheduler library does not properly handle SUBSCRIBE retries.
   * [MESOS-9532] - ResourceOffersTest.ResourceOfferWithMultipleSlaves is flaky.
+  * [MESOS-9533] - CniIsolatorTest.ROOT_CleanupAfterReboot is flaky.
 
 
 Release Notes - Mesos - Version 1.5.2


[mesos] 01/02: Fixed a test flakiness in ROOT_CleanupAfterReboot.

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

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

commit cda45e593cca9811ca5726ed0b72ba76fb574a41
Author: Gilbert Song <so...@gmail.com>
AuthorDate: Tue Jan 22 17:13:15 2019 -0800

    Fixed a test flakiness in ROOT_CleanupAfterReboot.
    
    Review: https://reviews.apache.org/r/69809
    (cherry picked from commit b54b493d6d6ae479d2154ed05f9615a11d662391)
---
 src/tests/containerizer/cni_isolator_tests.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/tests/containerizer/cni_isolator_tests.cpp b/src/tests/containerizer/cni_isolator_tests.cpp
index 3cd311f..1395f77 100644
--- a/src/tests/containerizer/cni_isolator_tests.cpp
+++ b/src/tests/containerizer/cni_isolator_tests.cpp
@@ -2146,7 +2146,8 @@ TEST_F(CniIsolatorTest, ROOT_CleanupAfterReboot)
   EXPECT_CALL(sched, statusUpdate(&driver, _))
     .WillOnce(FutureArg<1>(&statusStarting))
     .WillOnce(FutureArg<1>(&statusRunning))
-    .WillOnce(FutureArg<1>(&statusGone));
+    .WillOnce(FutureArg<1>(&statusGone))
+    .WillRepeatedly(Return()); // Ignore subsequent updates.
 
   driver.launchTasks(offer.id(), {task});