X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/61c742b48d46f6e21b8993ff66c72cecfbae7f49..f93ba744038d79211a48105bd691e26e1770cc61:/lib/crunchrun/cgroup.go diff --git a/lib/crunchrun/cgroup.go b/lib/crunchrun/cgroup.go index 0b254f5bd7..48ec93b876 100644 --- a/lib/crunchrun/cgroup.go +++ b/lib/crunchrun/cgroup.go @@ -6,16 +6,16 @@ package crunchrun import ( "bytes" + "fmt" "io/ioutil" - "log" ) // Return the current process's cgroup for the given subsystem. -func findCgroup(subsystem string) string { +func findCgroup(subsystem string) (string, error) { subsys := []byte(subsystem) cgroups, err := ioutil.ReadFile("/proc/self/cgroup") if err != nil { - log.Fatal(err) + return "", err } for _, line := range bytes.Split(cgroups, []byte("\n")) { toks := bytes.SplitN(line, []byte(":"), 4) @@ -24,10 +24,9 @@ func findCgroup(subsystem string) string { } for _, s := range bytes.Split(toks[1], []byte(",")) { if bytes.Compare(s, subsys) == 0 { - return string(toks[2]) + return string(toks[2]), nil } } } - log.Fatalf("subsystem %q not found in /proc/self/cgroup", subsystem) - return "" + return "", fmt.Errorf("subsystem %q not found in /proc/self/cgroup", subsystem) }