Remove redundant warning
Signed-off-by: Qiang Huang <h.huangqiang@huawei.com>
This commit is contained in:
parent
28f561297c
commit
1637ef7303
1 changed files with 1 additions and 3 deletions
|
@ -52,13 +52,11 @@ func New(quiet bool) *SysInfo {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
_, err := ioutil.ReadFile(path.Join(cgroupCpuMountpoint, "cpu.cfs_period_us"))
|
_, err := ioutil.ReadFile(path.Join(cgroupCpuMountpoint, "cpu.cfs_period_us"))
|
||||||
logrus.Warnf("%s", cgroupCpuMountpoint)
|
|
||||||
sysInfo.CpuCfsPeriod = err == nil
|
sysInfo.CpuCfsPeriod = err == nil
|
||||||
if !sysInfo.CpuCfsPeriod && !quiet {
|
if !sysInfo.CpuCfsPeriod && !quiet {
|
||||||
logrus.Warnf("WARING: Your kernel does not support cgroup cfs period")
|
logrus.Warn("Your kernel does not support cgroup cfs period")
|
||||||
}
|
}
|
||||||
_, err = ioutil.ReadFile(path.Join(cgroupCpuMountpoint, "cpu.cfs_quota_us"))
|
_, err = ioutil.ReadFile(path.Join(cgroupCpuMountpoint, "cpu.cfs_quota_us"))
|
||||||
logrus.Warnf("%s", cgroupCpuMountpoint)
|
|
||||||
sysInfo.CpuCfsQuota = err == nil
|
sysInfo.CpuCfsQuota = err == nil
|
||||||
if !sysInfo.CpuCfsQuota && !quiet {
|
if !sysInfo.CpuCfsQuota && !quiet {
|
||||||
logrus.Warn("Your kernel does not support cgroup cfs quotas")
|
logrus.Warn("Your kernel does not support cgroup cfs quotas")
|
||||||
|
|
Loading…
Reference in a new issue