Status/Plugin: fix jsonschema for MTU

jsonschema wants 'minimum' not 'min'

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2020-11-20 10:50:46 +01:00 committed by Thomas Lamprecht
parent 1f152d9f6e
commit 48fd18565b

View File

@ -37,7 +37,7 @@ my $defaultData = {
type => 'integer',
description => "MTU for metrics transmission over UDP",
default => 1500,
min => 512,
minimum => 512,
maximum => 64*1024,
optional => 1,
},