Skip to content

Commit 614f8e1

Browse files
camilesingZStack-Robot
authored andcommitted
fix bug 4219
1 parent a618748 commit 614f8e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compute/src/main/java/org/zstack/compute/allocator/BackupStorageSelectPrimaryStorageAllocatorFlow.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ public void allocate() {
8080
String name = spec.getImage().getName();
8181
throw new OperationFailureException(operr(
8282
"The image[uuid:%s, name:%s] is on the backup storage[uuid:%s, type:%s] that requires to work with primary storage[types:%s]," +
83-
"however, no host found suitable to work with those primary storage", spec.getImage().getUuid(),spec.getImage().getType(),
84-
spec.getRequiredBackupStorageUuid(), name, possiblePrimaryStorageTypes
83+
"however, no host found suitable to work with those primary storage", spec.getImage().getUuid(), name,
84+
spec.getRequiredBackupStorageUuid(),spec.getImage().getType(), possiblePrimaryStorageTypes
8585
));
8686
}
8787
} else if (!psUuids.isEmpty()) {

0 commit comments

Comments
 (0)