fix gofmt in master

Signed-off-by: Victor Vieux <victorvieux@gmail.com>
Upstream-commit: 9f348d5625996faf7a0855b8eb52cdd4def3958e
Component: engine
This commit is contained in:
Victor Vieux
2016-11-18 15:20:19 -08:00
parent 861d75e8ee
commit 9d6cdfc19f

View File

@ -142,7 +142,7 @@ func (s *VolumeStore) Purge(name string) {
type VolumeStore struct {
// locks ensures that only one action is being performed on a particular volume at a time without locking the entire store
// since actions on volumes can be quite slow, this ensures the store is free to handle requests for other volumes.
locks *locker.Locker
locks *locker.Locker
// globalLock is used to protect access to mutable structures used by the store object
globalLock sync.RWMutex
// names stores the volume name -> volume relationship.