diff --git a/plugins/storage/volume/linstor/src/main/java/org/apache/cloudstack/storage/datastore/driver/LinstorPrimaryDataStoreDriverImpl.java b/plugins/storage/volume/linstor/src/main/java/org/apache/cloudstack/storage/datastore/driver/LinstorPrimaryDataStoreDriverImpl.java index 3d09fce8bab4..f0119e4d2e09 100644 --- a/plugins/storage/volume/linstor/src/main/java/org/apache/cloudstack/storage/datastore/driver/LinstorPrimaryDataStoreDriverImpl.java +++ b/plugins/storage/volume/linstor/src/main/java/org/apache/cloudstack/storage/datastore/driver/LinstorPrimaryDataStoreDriverImpl.java @@ -720,7 +720,7 @@ private String revertSnapshotFromImageStore( private String doRevertSnapshot(final SnapshotInfo snapshot, final VolumeInfo volumeInfo) { final StoragePool pool = (StoragePool) volumeInfo.getDataStore(); final DevelopersApi linstorApi = LinstorUtil.getLinstorAPI(pool.getHostAddress()); - final String rscName = LinstorUtil.RSC_PREFIX + volumeInfo.getUuid(); + final String rscName = LinstorUtil.RSC_PREFIX + volumeInfo.getPath(); String resultMsg; try { if (snapshot.getDataStore().getRole() == DataStoreRole.Primary) {