Fix bug in snapshot removal

This commit is contained in:
Joshua Boniface 2024-05-21 15:04:47 -04:00
parent a4ca112128
commit 2b1082590e
1 changed files with 1 additions and 1 deletions

View File

@ -1401,7 +1401,7 @@ def remove_vm_snapshot(zkhandler, domain, snapshot_name, remove_backup=False):
rbd_snapshots = _snapshots.split(",")
for snap in rbd_snapshots:
name, rbd = snap.split("@")
pool, volume = rbd.split("/")
pool, volume = name.split("/")
ret, msg = ceph.remove_snapshot(zkhandler, pool, volume, name)
if not ret:
return False, msg