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 <[email protected]> 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);
