Skip to content

Commit 4870053

Browse files
Clarify service offering storage tag error
1 parent d068637 commit 4870053

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

server/src/main/java/org/apache/cloudstack/vm/UnmanagedVMsManagerImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2374,8 +2374,8 @@ private List<StoragePoolVO> findInstanceConversionDestinationStoragePoolsInClust
23742374
throw new CloudRuntimeException(msg);
23752375
}
23762376
if (getStoragePoolWithTags(poolsList, diskOffering.getTags()) == null) {
2377-
String msg = String.format("Cannot find an Up destination primary storage pool matching storage tags '%s' required by root disk offering %s used by service offering %s",
2378-
diskOffering.getTags(), diskOffering.getName(), serviceOffering.getName());
2377+
String msg = String.format("Cannot find an Up destination primary storage pool matching storage tags '%s' required by service offering %s",
2378+
diskOffering.getTags(), serviceOffering.getName());
23792379
logger.error(msg);
23802380
throw new CloudRuntimeException(msg);
23812381
}

0 commit comments

Comments
 (0)