From 88a2b8c79e86fd8c35c990dec3f7f5d0d3466c58 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 17 Sep 2012 10:26:21 +0200 Subject: [PATCH] nexenta: fix parameter for create_snapshot --- PVE/Storage/NexentaPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/NexentaPlugin.pm b/PVE/Storage/NexentaPlugin.pm index 98e2473..4f28c81 100644 --- a/PVE/Storage/NexentaPlugin.pm +++ b/PVE/Storage/NexentaPlugin.pm @@ -321,7 +321,7 @@ sub volume_resize { sub volume_snapshot { my ($class, $scfg, $storeid, $volname, $snap, $running) = @_; - nexenta_request($scfg, 'create_snapshot', 'zvol', "$scfg->{pool}/$volname", $snap, 0); + nexenta_request($scfg, 'create_snapshot', 'zvol', "$scfg->{pool}/$volname", $snap, ''); } sub volume_snapshot_rollback {