mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #291 from mavenugo/master
Return an empty config if nil
This commit is contained in:
commit
4329f8d185
1 changed files with 3 additions and 0 deletions
|
@ -169,6 +169,9 @@ func (c *controller) hostLeaveCallback(hosts []net.IP) {
|
||||||
func (c *controller) Config() config.Config {
|
func (c *controller) Config() config.Config {
|
||||||
c.Lock()
|
c.Lock()
|
||||||
defer c.Unlock()
|
defer c.Unlock()
|
||||||
|
if c.cfg == nil {
|
||||||
|
return config.Config{}
|
||||||
|
}
|
||||||
return *c.cfg
|
return *c.cfg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue