tpl/images: Fix embedded sync.Mutex
authorCameron Moore <moorereason@gmail.com>
Tue, 2 May 2017 07:17:14 +0000 (02:17 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 2 May 2017 07:17:14 +0000 (09:17 +0200)
docs/data/docs.json
tpl/images/images.go

index 9aaf52302ff2fd2a3165a673bd25ec051472d47f..8c49b18bce2fd56010cd84ee70d8c38dad2f40e6 100644 (file)
               "imageConfig"
             ],
             "Examples": []
-          },
-          {
-            "Name": "Lock",
-            "Description": "",
-            "Aliases": null,
-            "Examples": null
-          },
-          {
-            "Name": "RLock",
-            "Description": "",
-            "Aliases": null,
-            "Examples": null
-          },
-          {
-            "Name": "RLocker",
-            "Description": "",
-            "Aliases": null,
-            "Examples": null
-          },
-          {
-            "Name": "RUnlock",
-            "Description": "",
-            "Aliases": null,
-            "Examples": null
-          },
-          {
-            "Name": "Unlock",
-            "Description": "",
-            "Aliases": null,
-            "Examples": null
           }
         ]
       },
index 12705785323f64f91d6ed8f759be58f205cea7e2..9244323b43794593159396ffa78ea842f3f9a4a9 100644 (file)
@@ -37,8 +37,8 @@ func New(deps *deps.Deps) *Namespace {
 
 // Namespace provides template functions for the "images" namespace.
 type Namespace struct {
-       sync.RWMutex
-       cache map[string]image.Config
+       cacheMu sync.RWMutex
+       cache   map[string]image.Config
 
        deps *deps.Deps
 }
@@ -56,9 +56,9 @@ func (ns *Namespace) Config(path interface{}) (image.Config, error) {
        }
 
        // Check cache for image config.
-       ns.RLock()
+       ns.cacheMu.RLock()
        config, ok := ns.cache[filename]
-       ns.RUnlock()
+       ns.cacheMu.RUnlock()
 
        if ok {
                return config, nil
@@ -71,9 +71,9 @@ func (ns *Namespace) Config(path interface{}) (image.Config, error) {
 
        config, _, err = image.DecodeConfig(f)
 
-       ns.Lock()
+       ns.cacheMu.Lock()
        ns.cache[filename] = config
-       ns.Unlock()
+       ns.cacheMu.Unlock()
 
        return config, err
 }