mirror of
https://github.com/pgsty/minio.git
synced 2026-07-22 05:30:24 +03:00
isDocker() logs error than fatal error. (#3347)
This commit is contained in:
+3
-3
@@ -117,10 +117,10 @@ var (
|
|||||||
// Check if the operating system is a docker container.
|
// Check if the operating system is a docker container.
|
||||||
func isDocker() bool {
|
func isDocker() bool {
|
||||||
cgroup, err := ioutil.ReadFile("/proc/self/cgroup")
|
cgroup, err := ioutil.ReadFile("/proc/self/cgroup")
|
||||||
if err != nil && os.IsNotExist(err) {
|
if err != nil && !os.IsNotExist(err) {
|
||||||
return false
|
errorIf(err, "Unable to read `cgroup` file.")
|
||||||
}
|
}
|
||||||
fatalIf(err, "Unable to read `cgroup` file.")
|
|
||||||
return bytes.Contains(cgroup, []byte("docker"))
|
return bytes.Contains(cgroup, []byte("docker"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user