handle error when getting hostname in info api
Signed-off-by: allencloud <allen.sun@daocloud.io>
This commit is contained in:
parent
9a9ebc7f85
commit
a1c950913f
1 changed files with 6 additions and 2 deletions
|
@ -133,9 +133,13 @@ func (daemon *Daemon) SystemInfo() (*types.Info, error) {
|
|||
v.CPUSet = sysInfo.Cpuset
|
||||
}
|
||||
|
||||
if hostname, err := os.Hostname(); err == nil {
|
||||
v.Name = hostname
|
||||
hostname := ""
|
||||
if hn, err := os.Hostname(); err != nil {
|
||||
logrus.Warnf("Could not get hostname: %v", err)
|
||||
} else {
|
||||
hostname = hn
|
||||
}
|
||||
v.Name = hostname
|
||||
|
||||
return v, nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue