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

[mesos] branch 1.4.x updated (115eb88 -> 2522bfe)

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

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


    from 115eb88  Added MESOS-9532 to 1.4.3 CHANGELOG.
     new 2b5672c  Fixed a test flakiness in ROOT_CleanupAfterReboot.
     new 2522bfe  Added MESOS-9533 to 1.4.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.4.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.4.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 2522bfe4c441684bdca6b8e79f776569a2a0c281
Author: Gilbert Song <so...@gmail.com>
AuthorDate: Wed Jan 30 11:37:42 2019 -0800

    Added MESOS-9533 to 1.4.3 CHANGELOG.
    
    (cherry picked from commit 53d99735229d377f47582d93df2435b8f7970778)
---
 CHANGELOG | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG b/CHANGELOG
index bccd1eb..40bf865 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -28,6 +28,7 @@ Release Notes - Mesos - Version 1.4.3
   * [MESOS-9502] - IOswitchboard cleanup could get stuck due to FD leak from a race.
   * [MESOS-9518] - CNI_NETNS should not be set for orphan containers that do not have network namespace.
   * [MESOS-9532] - ResourceOffersTest.ResourceOfferWithMultipleSlaves is flaky.
+  * [MESOS-9533] - CniIsolatorTest.ROOT_CleanupAfterReboot is flaky.
 
 ** Improvement:
   * [MESOS-9510] - Disallowed nan, inf and so on in `Value::Scalar`.


[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.4.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 2b5672cd5bfd061985268e86b77983c7994e5f45
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 68180a0..2a8e934 100644
--- a/src/tests/containerizer/cni_isolator_tests.cpp
+++ b/src/tests/containerizer/cni_isolator_tests.cpp
@@ -2050,7 +2050,8 @@ TEST_F(CniIsolatorTest, ROOT_CleanupAfterReboot)
   Future<TaskStatus> statusGone;
   EXPECT_CALL(sched, statusUpdate(&driver, _))
     .WillOnce(FutureArg<1>(&statusRunning))
-    .WillOnce(FutureArg<1>(&statusGone));
+    .WillOnce(FutureArg<1>(&statusGone))
+    .WillRepeatedly(Return()); // Ignore subsequent updates.
 
   driver.launchTasks(offer.id(), {task});