Browse Source

Merge pull request #28690 from zteBill/volume-errorinfo-inexact

repeated volume create information
Vincent Demeester 8 years ago
parent
commit
fa4f09194f
1 changed files with 3 additions and 0 deletions
  1. 3 0
      volume/store/store.go

+ 3 - 0
volume/store/store.go

@@ -275,6 +275,9 @@ func (s *VolumeStore) CreateWithRef(name, driverName, ref string, opts, labels m
 
 	v, err := s.create(name, driverName, opts, labels)
 	if err != nil {
+		if _, ok := err.(*OpErr); ok {
+			return nil, err
+		}
 		return nil, &OpErr{Err: err, Name: name, Op: "create"}
 	}