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/11/01 17:14:12 UTC

[mesos] branch master updated (d8062f2 -> d259228)

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 d8062f2  Updated 'CLI_FILES' in 'cli_new/CmakeLists.txt'.
     new 7c0bc51  Fixed a test flake in `HealthCheckTest.HealthyTaskNonShell`.
     new d259228  Fixed a comment in SLRP.

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:
 src/resource_provider/storage/provider.cpp | 2 +-
 src/tests/health_check_tests.cpp           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[mesos] 02/02: Fixed a comment in SLRP.

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 d259228b9c9d29e234d609a104005c3e7ee26a0a
Author: Chun-Hung Hsiao <ch...@apache.org>
AuthorDate: Thu Nov 1 10:07:19 2018 -0700

    Fixed a comment in SLRP.
    
    Review: https://reviews.apache.org/r/69033/
---
 src/resource_provider/storage/provider.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/resource_provider/storage/provider.cpp b/src/resource_provider/storage/provider.cpp
index 025b13b..2873b1a 100644
--- a/src/resource_provider/storage/provider.cpp
+++ b/src/resource_provider/storage/provider.cpp
@@ -665,7 +665,7 @@ Future<Nothing> StorageLocalResourceProviderProcess::recover()
     .then(defer(self(), [=]() -> Future<Nothing> {
       LOG(INFO)
         << "Finished recovery for resource provider with type '" << info.type()
-        << "' and name '" << info.name();
+        << "' and name '" << info.name() << "'";
 
       state = DISCONNECTED;
 


[mesos] 01/02: Fixed a test flake in `HealthCheckTest.HealthyTaskNonShell`.

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 7c0bc51d7d2c26a804619017951af9863f3fd05f
Author: Chun-Hung Hsiao <ch...@mesosphere.io>
AuthorDate: Wed Oct 31 20:13:28 2018 -0700

    Fixed a test flake in `HealthCheckTest.HealthyTaskNonShell`.
    
    Review: https://reviews.apache.org/r/69224
---
 src/tests/health_check_tests.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/health_check_tests.cpp b/src/tests/health_check_tests.cpp
index da64dc2..2fcf9d4 100644
--- a/src/tests/health_check_tests.cpp
+++ b/src/tests/health_check_tests.cpp
@@ -670,7 +670,7 @@ TEST_F(HealthCheckTest, HealthyTaskNonShell)
   driver.launchTasks(offers.get()[0].id(), tasks);
 
   AWAIT_READY(statusStarting);
-  EXPECT_EQ(TASK_RUNNING, statusRunning->state());
+  EXPECT_EQ(TASK_STARTING, statusStarting->state());
 
   AWAIT_READY(statusRunning);
   EXPECT_EQ(TASK_RUNNING, statusRunning->state());