summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/volumes/fs/operations/group.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pybind/mgr/volumes/fs/operations/group.py')
-rw-r--r--src/pybind/mgr/volumes/fs/operations/group.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pybind/mgr/volumes/fs/operations/group.py b/src/pybind/mgr/volumes/fs/operations/group.py
index 8b4061033..efc10e079 100644
--- a/src/pybind/mgr/volumes/fs/operations/group.py
+++ b/src/pybind/mgr/volumes/fs/operations/group.py
@@ -269,6 +269,9 @@ def remove_group(fs, vol_spec, groupname):
except cephfs.Error as e:
if e.args[0] == errno.ENOENT:
raise VolumeException(-errno.ENOENT, "subvolume group '{0}' does not exist".format(groupname))
+ elif e.args[0] == errno.ENOTEMPTY:
+ raise VolumeException(-errno.ENOTEMPTY, f"subvolume group {groupname} contains subvolume(s) "
+ "or retained snapshots of deleted subvolume(s)")
raise VolumeException(-e.args[0], e.args[1])