You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by al...@apache.org on 2016/11/09 11:16:37 UTC

mesos git commit: Fixed typos in the changelog and in a comment.

Repository: mesos
Updated Branches:
  refs/heads/master 3845ab8af -> de51ad9d0


Fixed typos in the changelog and in a comment.

Review: https://reviews.apache.org/r/53601/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/de51ad9d
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/de51ad9d
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/de51ad9d

Branch: refs/heads/master
Commit: de51ad9d0718fb9d36eaa71a20fcbe73f19e8dfe
Parents: 3845ab8
Author: Gast�n Kleiman <ga...@mesosphere.com>
Authored: Wed Nov 9 12:17:29 2016 +0100
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Wed Nov 9 12:17:29 2016 +0100

----------------------------------------------------------------------
 CHANGELOG                                       | 2 +-
 src/slave/containerizer/mesos/containerizer.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/de51ad9d/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index 928be89..0d8aa39 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -769,7 +769,7 @@ All Issues:
     * [MESOS-4807] - IOTest.BufferedRead writes to the current directory
     * [MESOS-4810] - ProvisionerDockerPullerTest.ROOT_INTERNET_CURL_ShellCommand fails.
     * [MESOS-4827] - Destroy Docker container crashes Mesos slave
-    * [MESOS-4875] - overlayfs does not work when lauching tasks
+    * [MESOS-4875] - overlayfs does not work when launching tasks
     * [MESOS-4876] - bind backend does not work when launching tasks
     * [MESOS-4885] - Unzip should force overwrite
     * [MESOS-4901] - Build fails on some systems due to unportable use of time.h

http://git-wip-us.apache.org/repos/asf/mesos/blob/de51ad9d/src/slave/containerizer/mesos/containerizer.cpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/mesos/containerizer.cpp b/src/slave/containerizer/mesos/containerizer.cpp
index e57064c..44225eb 100644
--- a/src/slave/containerizer/mesos/containerizer.cpp
+++ b/src/slave/containerizer/mesos/containerizer.cpp
@@ -1397,7 +1397,7 @@ Future<bool> MesosContainerizerProcess::_launch(
     map<string, string> launchEnvironment = os::environment();
 
     // Passing the command environment via an environment variable
-    // to the lauch helper instead of a flag due to the sensitivity
+    // to the launch helper instead of a flag due to the sensitivity
     // of environment variables. Otherwise the command environment
     // would have been visible through commands like `ps` which are
     // not protected from unprivileged users on the host.