cephfs: use os.Remove to remove directory

using os.RemoveAll will remove everything
in the director after the Umount we should
be using os.Remove only to remove the empty
directory

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
(cherry picked from commit cd09266870)
This commit is contained in:
Madhu Rajanna 2024-11-20 10:14:26 +01:00 committed by mergify[bot]
parent e6292d8f90
commit b939471ac2

View File

@ -636,7 +636,7 @@ func (ns *NodeServer) NodeUnpublishVolume(
isMnt = true
}
if !isMnt {
if err = os.RemoveAll(targetPath); err != nil {
if err = os.Remove(targetPath); err != nil {
return nil, status.Error(codes.Internal, err.Error())
}