From f77e40fceab6cb3e3e9c6f5a7b6bfe1d9d5865fd Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 18 Dec 2018 14:25:09 -0600 Subject: [PATCH] mgr/zabbix: specify option types Signed-off-by: Sage Weil --- src/pybind/mgr/zabbix/module.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pybind/mgr/zabbix/module.py b/src/pybind/mgr/zabbix/module.py index 469e7c34bde..cd670b9166f 100644 --- a/src/pybind/mgr/zabbix/module.py +++ b/src/pybind/mgr/zabbix/module.py @@ -68,6 +68,7 @@ class Module(MgrModule): }, { 'name': 'zabbix_port', + 'type': 'int', 'default': 10051 }, { @@ -76,6 +77,7 @@ class Module(MgrModule): }, { 'name': 'interval', + 'type': 'secs', 'default': 60 } ] -- 2.39.5