mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
cephfs: check error output contains Error: ENOENT
execCommandErr returns both error and stderror message. checking strings.HasPrefix is not helpful as the stderr will be the first string. its good to do string comparison and find out that error is volume not found error. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
parent
25899b0123
commit
31c7c95fdb
@ -252,7 +252,7 @@ func purgeVolume(ctx context.Context, volID volumeID, cr *util.Credentials, volO
|
||||
err := execCommandErr(ctx, "ceph", arg...)
|
||||
if err != nil {
|
||||
util.ErrorLog(ctx, "failed to purge subvolume %s(%s) in fs %s", string(volID), err, volOptions.FsName)
|
||||
if strings.HasPrefix(err.Error(), ErrVolumeNotFound.Error()) {
|
||||
if strings.Contains(err.Error(), ErrVolumeNotFound.Error()) {
|
||||
return util.JoinErrors(ErrVolumeNotFound, err)
|
||||
}
|
||||
return err
|
||||
|
Loading…
Reference in New Issue
Block a user