From 76aa80fc930ce35d3d018309b11b20acf3765f66 Mon Sep 17 00:00:00 2001 From: Fiona Ebner Date: Tue, 30 Jan 2024 10:11:04 +0100 Subject: [PATCH] zfs: fix duplicate word typo in error message Signed-off-by: Fiona Ebner --- src/PVE/Storage/ZFSPoolPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/Storage/ZFSPoolPlugin.pm b/src/PVE/Storage/ZFSPoolPlugin.pm index 951d027..3669fe1 100644 --- a/src/PVE/Storage/ZFSPoolPlugin.pm +++ b/src/PVE/Storage/ZFSPoolPlugin.pm @@ -200,7 +200,7 @@ sub zfs_wait_for_zvol_link { for (my $i = 1; $i <= $timeout; $i++) { last if -b $devname; - die "timeout: no zvol device link for '$volname' found after $timeout sec found.\n" + die "timeout: no zvol device link for '$volname' found after $timeout sec.\n" if $i == $timeout; sleep(1);