|
@@ -526,6 +526,8 @@ func (c *controller) Config() config.Config {
|
|
|
}
|
|
|
|
|
|
func (c *controller) isManager() bool {
|
|
|
+ c.Lock()
|
|
|
+ defer c.Unlock()
|
|
|
if c.cfg == nil || c.cfg.Daemon.ClusterProvider == nil {
|
|
|
return false
|
|
|
}
|
|
@@ -533,6 +535,8 @@ func (c *controller) isManager() bool {
|
|
|
}
|
|
|
|
|
|
func (c *controller) isAgent() bool {
|
|
|
+ c.Lock()
|
|
|
+ defer c.Unlock()
|
|
|
if c.cfg == nil || c.cfg.Daemon.ClusterProvider == nil {
|
|
|
return false
|
|
|
}
|