rbd: fix typo in error message

Signed-off-by: Fabian Ebner <f.ebner@proxmox.com>
This commit is contained in:
Fabian Ebner
2021-04-20 10:14:01 +02:00
committed by Thomas Lamprecht
parent ceb7b1ed09
commit 3c93115570

View File

@ -503,7 +503,7 @@ sub alloc_image {
$name = $class->find_free_diskname($storeid, $scfg, $vmid) if !$name;
my $cmd = $rbd_cmd->($scfg, $storeid, 'create', '--image-format' , 2, '--size', int(($size+1023)/1024), $name);
run_rbd_command($cmd, errmsg => "rbd create $name' error");
run_rbd_command($cmd, errmsg => "rbd create '$name' error");
return $name;
}