You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by mz...@apache.org on 2018/10/29 21:51:53 UTC

[mesos] branch master updated (90dd6c3 -> 81564b8)

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

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


    from 90dd6c3  Added filters info to the `DECLINE` call log message.
     new dc8f085  Fixed a typo in the allocator benchmark.
     new 81564b8  Fixed a typo in `slave.cpp`.

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/slave/slave.cpp                             | 2 +-
 src/tests/hierarchical_allocator_benchmarks.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[mesos] 02/02: Fixed a typo in `slave.cpp`.

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

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

commit 81564b81fce7efd422c142166e2f27ccc168516c
Author: Meng Zhu <mz...@mesosphere.io>
AuthorDate: Fri Sep 21 16:11:52 2018 -0700

    Fixed a typo in `slave.cpp`.
    
    See summary.
    
    Review: https://reviews.apache.org/r/68809
---
 src/slave/slave.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp
index 7bb2b29..74f6fb9 100644
--- a/src/slave/slave.cpp
+++ b/src/slave/slave.cpp
@@ -1292,7 +1292,7 @@ void Slave::detected(const Future<Option<MasterInfo>>& _master)
     // Wait for a random amount of time before authentication or
     // registration.
     //
-    // TODO(mzhu): Specialize this for authetication.
+    // TODO(mzhu): Specialize this for authentication.
     Duration duration =
       flags.registration_backoff_factor * ((double) os::random() / RAND_MAX);
 


[mesos] 01/02: Fixed a typo in the allocator benchmark.

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

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

commit dc8f085cf85431cb3c5b52e04f19713d0f7b48b5
Author: Meng Zhu <mz...@mesosphere.io>
AuthorDate: Fri Oct 12 17:37:00 2018 -0700

    Fixed a typo in the allocator benchmark.
---
 src/tests/hierarchical_allocator_benchmarks.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tests/hierarchical_allocator_benchmarks.cpp b/src/tests/hierarchical_allocator_benchmarks.cpp
index 5af09f7..6c6330e 100644
--- a/src/tests/hierarchical_allocator_benchmarks.cpp
+++ b/src/tests/hierarchical_allocator_benchmarks.cpp
@@ -67,7 +67,7 @@ namespace mesos {
 namespace internal {
 namespace tests {
 
-// TODO(kapil): Add support for per-framework-profile cofiguration for
+// TODO(kapil): Add support for per-framework-profile configuration for
 // offer acceptance/rejection.
 struct FrameworkProfile
 {