This is an automated email from the ASF dual-hosted git repository.
bennoe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 11a8150 Fixed filename in warning message.
11a8150 is described below
commit 11a8150fc9c794723bdb728357c99df25f012380
Author: Benno Evers <[email protected]>
AuthorDate: Mon Mar 4 19:10:26 2019 +0100
Fixed filename in warning message.
This patch fixes a typo in the name of the `cgroup.procs`
file that can be printed when starting Mesos agent.
Review: https://reviews.apache.org/r/70023/
---
src/slave/main.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/slave/main.cpp b/src/slave/main.cpp
index b676be5..ef5ea02 100644
--- a/src/slave/main.cpp
+++ b/src/slave/main.cpp
@@ -203,7 +203,7 @@ static Try<Nothing> assignCgroups(const slave::Flags& flags)
LOG(INFO) << "An agent (or child process) is still running, please"
<< " consider checking the following process(es) listed in "
- << path::join(hierarchy.get(), cgroup, "cgroups.proc")
+ << path::join(hierarchy.get(), cgroup, "cgroup.procs")
<< ":\n" << strings::join("\n", infos);
}