mirror of
https://github.com/minio/minio.git
synced 2025-04-24 04:10:43 -04:00
isDocker() logs error than fatal error. (#3347)
This commit is contained in:
parent
39f9324616
commit
d3064e40b3
@ -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"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user