Merge pull request #28690 from zteBill/volume-errorinfo-inexact
repeated volume create information Upstream-commit: fa4f09194f7dd6687ac073f51ab344de2f165071 Component: engine
This commit is contained in:
@ -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"}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user