MKP1.1.2, Fix for Solr size thresholds

This commit is contained in:
2023-09-10 16:49:05 +02:00
parent 43b69c2e81
commit d55380d647
3 changed files with 8 additions and 10 deletions

View File

@@ -62,12 +62,12 @@ def _parameter_spec_mailcow_info():
Float(
title=_("Warning at"),
default_value=4096.0,
unit="KBytes",
unit="MBytes",
),
Float(
title=_("Critical at"),
default_value=8192.0,
unit="KBytes",
unit="MBytes",
)
],
)),
@@ -76,11 +76,11 @@ def _parameter_spec_mailcow_info():
elements=[
Integer(
title=_("Warning at"),
default_value=2000,
default_value=20000,
),
Integer(
title=_("Critical at"),
default_value=4000,
default_value=40000,
)
],
)),