Repository: mesos Updated Branches: refs/heads/master ac0cedb4d -> 75ff14306
Fixed a comment in posix filesystem isolator. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/75ff1430 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/75ff1430 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/75ff1430 Branch: refs/heads/master Commit: 75ff143063f570594c84e356ff452d912062b950 Parents: ac0cedb Author: Jie Yu <[email protected]> Authored: Wed Jul 22 16:03:05 2015 -0700 Committer: Jie Yu <[email protected]> Committed: Wed Jul 22 16:03:05 2015 -0700 ---------------------------------------------------------------------- src/slave/containerizer/isolators/filesystem/posix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/75ff1430/src/slave/containerizer/isolators/filesystem/posix.cpp ---------------------------------------------------------------------- diff --git a/src/slave/containerizer/isolators/filesystem/posix.cpp b/src/slave/containerizer/isolators/filesystem/posix.cpp index b78c547..0c56627 100644 --- a/src/slave/containerizer/isolators/filesystem/posix.cpp +++ b/src/slave/containerizer/isolators/filesystem/posix.cpp @@ -230,7 +230,7 @@ Future<Nothing> PosixFilesystemIsolatorProcess::update( (realpath.isError() ? realpath.error() : "No such directory")); } - // NOTE: A sanity check which we don't expect it to happen. + // NOTE: A sanity check which we don't expect to happen. if (realpath.get() != original) { return Failure( "The existing symlink '" + link + "' points to '" + original +
