From 19e5596a749d26b4f6e31cf59062c5b43e52e54e Mon Sep 17 00:00:00 2001 From: Wolfgang Link Date: Mon, 25 Jan 2016 10:44:35 +0100 Subject: [PATCH] increase timeout for ZFSPugin This is useful on large zfs pools because they take longer to response. --- PVE/Storage/ZFSPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/ZFSPlugin.pm b/PVE/Storage/ZFSPlugin.pm index 5074ba4..d6339ce 100644 --- a/PVE/Storage/ZFSPlugin.pm +++ b/PVE/Storage/ZFSPlugin.pm @@ -49,7 +49,7 @@ my $zfs_get_base = sub { sub zfs_request { my ($class, $scfg, $timeout, $method, @params) = @_; - $timeout = 5 if !$timeout; + $timeout = 10 if !$timeout; my $msg = ''; -- 2.39.5