]> git.proxmox.com Git - pve-storage.git/commitdiff
zfs: fix duplicate word typo in error message
authorFiona Ebner <f.ebner@proxmox.com>
Tue, 30 Jan 2024 09:11:04 +0000 (10:11 +0100)
committerFabian Grünbichler <f.gruenbichler@proxmox.com>
Tue, 30 Jan 2024 09:25:41 +0000 (10:25 +0100)
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
src/PVE/Storage/ZFSPoolPlugin.pm

index 951d027c4aa47a6dde15d1985f496ec34c3fffdb..3669fe152b62df7ebeda572cdf56ef19be872d56 100644 (file)
@@ -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);