mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-7665 File.separator shouldn't be used in this case, the
separator is fixed just like the rest of the path (cherry picked from commit 47ac3e4fd1aa9b117b5ce72035e6d09239f1ca4f)
This commit is contained in:
parent
dba4a8c837
commit
160aa846a5
@ -18,7 +18,6 @@
|
|||||||
*/
|
*/
|
||||||
package org.apache.cloudstack.storage.image;
|
package org.apache.cloudstack.storage.image;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
@ -878,7 +877,7 @@ public class TemplateServiceImpl implements TemplateService {
|
|||||||
if (tmpltStore == null) {
|
if (tmpltStore == null) {
|
||||||
tmpltStore =
|
tmpltStore =
|
||||||
new TemplateDataStoreVO(storeId, tmplt.getId(), new Date(), 100, Status.DOWNLOADED, null, null, null,
|
new TemplateDataStoreVO(storeId, tmplt.getId(), new Date(), 100, Status.DOWNLOADED, null, null, null,
|
||||||
TemplateConstants.DEFAULT_SYSTEM_VM_TEMPLATE_PATH + tmplt.getId() + File.separator, tmplt.getUrl());
|
TemplateConstants.DEFAULT_SYSTEM_VM_TEMPLATE_PATH + tmplt.getId() + '/', tmplt.getUrl());
|
||||||
tmpltStore.setSize(0L);
|
tmpltStore.setSize(0L);
|
||||||
tmpltStore.setPhysicalSize(0); // no size information for
|
tmpltStore.setPhysicalSize(0); // no size information for
|
||||||
// pre-seeded system vm templates
|
// pre-seeded system vm templates
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user