Repository: mesos Updated Branches: refs/heads/master f13239e14 -> 8644457e0
Fix a comment in Slave. Review: https://reviews.apache.org/r/35467 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8644457e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/8644457e Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/8644457e Branch: refs/heads/master Commit: 8644457e05d50e4a23b386c6211635e25997f55c Parents: f13239e Author: Michael Park <[email protected]> Authored: Wed Jun 17 11:52:03 2015 +0200 Committer: Till Toenshoff <[email protected]> Committed: Wed Jun 17 11:52:04 2015 +0200 ---------------------------------------------------------------------- src/slave/slave.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/8644457e/src/slave/slave.cpp ---------------------------------------------------------------------- diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp index 19f9013..098b58a 100644 --- a/src/slave/slave.cpp +++ b/src/slave/slave.cpp @@ -4056,7 +4056,7 @@ Future<Nothing> Slave::garbageCollect(const string& path) // It is unsafe for testing to use unix time directly, we must use // Time::create to convert into a Time object that reflects the - // possibly advanced state state of the libprocess Clock. + // possibly advanced state of the libprocess Clock. Try<Time> time = Time::create(mtime.get()); CHECK_SOME(time);
