]> git.proxmox.com Git - pve-cluster.git/commitdiff
datacenter cfg: clarify that next-id upper boundary is exclusive and fix max
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 4 May 2022 05:25:41 +0000 (07:25 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 4 May 2022 05:25:41 +0000 (07:25 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
data/PVE/DataCenterConfig.pm

index a82271b2ccb35959f8bebd561402ae97ec5ec0db..bcd77f83229aa1852254d1c18eb2268218cbdeab 100644 (file)
@@ -62,9 +62,9 @@ my $next_id_format = {
     },
     upper => {
        type => 'integer',
-       description => "Upper, inclusive boundary for free next-id API range.",
+       description => "Upper, exclusive boundary for free next-id API range.",
        min => 100,
-       max => 1000 * 1000 * 1000 - 1,
+       max => 1000 * 1000 * 1000,
        default => 1000 * 1000, # lower than the maximum on purpose
        optional => 1,
     },