From f8d1d5ad9abcf004002e47b41f4652a3150ca97b Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 13 Mar 2021 21:30:03 +0100 Subject: [PATCH] ext. metris. fixup InfluxDB spelling in schema and code style Signed-off-by: Thomas Lamprecht --- PVE/Status/InfluxDB.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/PVE/Status/InfluxDB.pm b/PVE/Status/InfluxDB.pm index 67751964..d7ea6ce2 100644 --- a/PVE/Status/InfluxDB.pm +++ b/PVE/Status/InfluxDB.pm @@ -22,19 +22,19 @@ sub type { sub properties { return { organization => { - description => "The influxdb organization. Only necessary when using the http v2 api. ". - "Has no meaning when using v2 compatibility api.", + description => "The InfluxDB organization. Only necessary when using the http v2 api." + ." Has no meaning when using v2 compatibility api.", type => 'string', optional => 1, }, bucket => { - description => "The influxdb bucket/db. Only necessary when using the http v2 api.", + description => "The InfluxDB bucket/db. Only necessary when using the http v2 api.", type => 'string', optional => 1, }, token => { - description => "The influxdb access token. Only necessary when using the http v2 api. ". - "If the v2 compatibility api is used, use 'user:password' instead.", + description => "The InfluxDB access token. Only necessary when using the http v2 api." + ." If the v2 compatibility api is used, use 'user:password' instead.", type => 'string', optional => 1, }, @@ -45,7 +45,7 @@ sub properties { optional => 1, }, 'max-body-size' => { - description => "Influxdb max-body-size. Requests are batched up to this size.", + description => "InfluxDB max-body-size in bytes. Requests are batched up to this size.", type => 'integer', minimum => 1, default => 25_000_000,