deletion error report

This commit is contained in:
Chris Lu 2020-08-14 00:23:01 -07:00
parent a7f669044e
commit eb493283dd

View file

@ -225,9 +225,15 @@ func Remove(filerClient FilerClient, parentDirectoryPath, name string, isDeleteD
IgnoreRecursiveError: ignoreRecursiveErr,
IsFromOtherCluster: isFromOtherCluster,
}); err != nil {
if strings.Contains(err.Error(), ErrNotFound.Error()){
return nil
}
return err
} else {
if resp.Error != "" {
if strings.Contains(resp.Error, ErrNotFound.Error()){
return nil
}
return errors.New(resp.Error)
}
}