Pārlūkot izejas kodu

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

repeated volume create information
Vincent Demeester 8 gadi atpakaļ
vecāks
revīzija
fa4f09194f
1 mainītis faili ar 3 papildinājumiem un 0 dzēšanām
  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"}
 	}