mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 14:20:19 +00:00
cleanup: return error type in updateVolWithImageInfo()
Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
610162b5f4
commit
57ce07f54e
@ -1022,7 +1022,7 @@ func (rv *rbdVolume) updateVolWithImageInfo() error {
|
|||||||
if stdout != "" {
|
if stdout != "" {
|
||||||
err = json.Unmarshal([]byte(stdout), &imgInfo)
|
err = json.Unmarshal([]byte(stdout), &imgInfo)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("unmarshal failed: %+v. raw buffer response: %s", err, stdout)
|
return fmt.Errorf("unmarshal failed (%w), raw buffer response: %s", err, stdout)
|
||||||
}
|
}
|
||||||
rv.Primary = imgInfo.Mirroring.Primary
|
rv.Primary = imgInfo.Mirroring.Primary
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user