Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8851e6b commit 9f348d5Copy full SHA for 9f348d5
1 file changed
volume/store/store.go
@@ -142,7 +142,7 @@ func (s *VolumeStore) Purge(name string) {
142
type VolumeStore struct {
143
// locks ensures that only one action is being performed on a particular volume at a time without locking the entire store
144
// since actions on volumes can be quite slow, this ensures the store is free to handle requests for other volumes.
145
- locks *locker.Locker
+ locks *locker.Locker
146
// globalLock is used to protect access to mutable structures used by the store object
147
globalLock sync.RWMutex
148
// names stores the volume name -> volume relationship.
0 commit comments