mirror of https://github.com/apache/cloudstack.git
linstor: deleteAsync fallback to volume UUID if path not set yet (#9325)
This commit is contained in:
parent
121a35d666
commit
eb1a0ef7f2
|
|
@ -242,7 +242,9 @@ public class LinstorPrimaryDataStoreDriverImpl implements PrimaryDataStoreDriver
|
|||
case VOLUME:
|
||||
{
|
||||
final VolumeInfo volumeInfo = (VolumeInfo) dataObject;
|
||||
final String rscName = LinstorUtil.RSC_PREFIX + volumeInfo.getPath();
|
||||
// if volume creation wasn't completely done .setPath wasn't called, so we fallback to vol.getUuid()
|
||||
final String volUuid = volumeInfo.getPath() != null ? volumeInfo.getPath() : volumeInfo.getUuid();
|
||||
final String rscName = LinstorUtil.RSC_PREFIX + volUuid;
|
||||
deleteResourceDefinition(storagePool, rscName);
|
||||
|
||||
long usedBytes = storagePool.getUsedBytes();
|
||||
|
|
|
|||
Loading…
Reference in New Issue