Skip to content

Commit 3e08b79

Browse files
author
Wei Tie
committed
Add lock for getting podCache label
Signed-off-by: Wei Tie <[email protected]>
1 parent e5de67d commit 3e08b79

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

mgmtfn/k8splugin/kubeClient.go

+4
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,11 @@ func (c *APIClient) GetPodLabel(ns, name, label string) (string, error) {
237237
}
238238
}
239239

240+
c.podCache.labelsMutex.Lock()
241+
defer c.podCache.labelsMutex.Unlock()
242+
240243
res, found := c.podCache.labels[label]
244+
241245
if found {
242246
return res, nil
243247
}

0 commit comments

Comments
 (0)