Actually fix incorrect naming bug

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

View File

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