]> git.proxmox.com Git - pve-common.git/commitdiff
json schema: improve description of bwlimit parameter
authorStefan Hanreich <s.hanreich@proxmox.com>
Wed, 29 Mar 2023 12:34:33 +0000 (14:34 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 6 Jun 2023 15:55:55 +0000 (17:55 +0200)
This makes the description consistent with the other places that
have bwlimit as a parameter as well.

Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
src/PVE/JSONSchema.pm

index 527e40980ffa86661484d0aa236f3e95861d68a9..93dfcf9580cfb6d10549dc8fa8891bdf6ce1da3f 100644 (file)
@@ -670,7 +670,7 @@ my $bwlimit_format = {
 };
 register_format('bwlimit', $bwlimit_format);
 register_standard_option('bwlimit', {
-    description => "Set bandwidth/io limits various operations.",
+    description => "Set I/O bandwidth limit for various operations (in KiB/s).",
     optional => 1,
     type => 'string',
     format => $bwlimit_format,