From 1cba7d19e7fd4265f430aafc3eda552b6ac2af4e Mon Sep 17 00:00:00 2001 From: Marsell Kukuljevic Date: Sun, 13 Apr 2025 15:15:13 +0200 Subject: [PATCH] Add two extra includes. For some reason this plugin causes GUI exceptions in prod, even though none of the other plugin GUIs do. --- .../local/share/check_mk/web/plugins/wato/domains_expiry.py | 2 ++ .../share/check_mk/web/plugins/wato/domains_nameservers.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_expiry.py b/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_expiry.py index da09bde..6b263ff 100644 --- a/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_expiry.py +++ b/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_expiry.py @@ -8,6 +8,7 @@ from cmk.gui.plugins.wato.utils import ( rulespec_registry, HostRulespec, RulespecGroupCheckParametersNetworking, + CheckParameterRulespecWithItem ) from cmk.gui.watolib.rulespecs import Rulespec from cmk.gui.valuespec import ( @@ -15,6 +16,7 @@ from cmk.gui.valuespec import ( Integer, ListOfStrings, Tuple, + TextInput ) diff --git a/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_nameservers.py b/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_nameservers.py index 6a78d9a..2013311 100644 --- a/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_nameservers.py +++ b/check_mk-domains/local/share/check_mk/web/plugins/wato/domains_nameservers.py @@ -7,6 +7,7 @@ from cmk.gui.i18n import _ from cmk.gui.plugins.wato.utils import ( rulespec_registry, HostRulespec, + CheckParameterRulespecWithItem, RulespecGroupCheckParametersNetworking, ) from cmk.gui.watolib.rulespecs import Rulespec @@ -17,6 +18,7 @@ from cmk.gui.valuespec import ( DropdownChoice, Tuple, ListOf, + TextInput )