// 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
}
}
// 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
config, _, err = image.DecodeConfig(f)
- ns.Lock()
+ ns.cacheMu.Lock()
ns.cache[filename] = config
- ns.Unlock()
+ ns.cacheMu.Unlock()
return config, err
}