Skip to content

Commit 13a8363

Browse files
author
Joji Mekkatt
committed
Fix a concurrent map error
1 parent c4075e9 commit 13a8363

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

mgmtfn/k8splugin/kubeClient.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import (
2727
"golang.org/x/net/context/ctxhttp"
2828
"io/ioutil"
2929
"net/http"
30+
"sync"
3031
)
3132

3233
const (
@@ -72,9 +73,10 @@ type watchSvcEpStatus struct {
7273
}
7374

7475
type podInfo struct {
75-
nameSpace string
76-
name string
77-
labels map[string]string
76+
nameSpace string
77+
name string
78+
labels map[string]string
79+
labelsMutex sync.Mutex
7880
}
7981

8082
// NewAPIClient creates an instance of the k8s api client
@@ -165,6 +167,8 @@ func (c *APIClient) fetchPodLabels(ns, name string) error {
165167
}
166168

167169
p := &c.podCache
170+
p.labelsMutex.Lock()
171+
defer p.labelsMutex.Unlock()
168172
p.setDefaults(ns, name)
169173

170174
meta := m.(map[string]interface{})

0 commit comments

Comments
 (0)