mirror of
git://git.proxmox.com/git/qemu-server.git
synced 2025-01-22 22:03:55 +03:00
disk import: warn when fallback is used instead of requested format
Might avoid some confusion. Reported in the community forum: https://forum.proxmox.com/threads/142988/ Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
This commit is contained in:
parent
ddca7afe61
commit
f6039cedf1
@ -28,6 +28,8 @@ sub do_import {
|
||||
# get target format, target image's path, and whether it's possible to sparseinit
|
||||
my $storecfg = PVE::Storage::config();
|
||||
my $dst_format = PVE::QemuServer::resolve_dst_disk_format($storecfg, $storage_id, undef, $format);
|
||||
warn "format '$format' is not supported by the target storage - using '$dst_format' instead\n"
|
||||
if $format && $format ne $dst_format;
|
||||
|
||||
my $dst_volid = PVE::Storage::vdisk_alloc($storecfg, $storage_id, $vmid, $dst_format, undef, $src_size / 1024);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user