Jelajahi Sumber

Merge pull request #28610 from vieux/fix_gofmt

fix gofmt in master
Victor Vieux 8 tahun lalu
induk
melakukan
697b6b504a
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      volume/store/store.go

+ 1 - 1
volume/store/store.go

@@ -142,7 +142,7 @@ func (s *VolumeStore) Purge(name string) {
 type VolumeStore struct {
 type VolumeStore struct {
 	// locks ensures that only one action is being performed on a particular volume at a time without locking the entire store
 	// 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.
 	// 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 is used to protect access to mutable structures used by the store object
 	globalLock sync.RWMutex
 	globalLock sync.RWMutex
 	// names stores the volume name -> volume relationship.
 	// names stores the volume name -> volume relationship.