Merge pull request #28690 from zteBill/volume-errorinfo-inexact
repeated volume create information
This commit is contained in:
commit
fa4f09194f
1 changed files with 3 additions and 0 deletions
|
@ -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"}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue