summaryrefslogtreecommitdiff
path: root/oslo_middleware/healthcheck/pluginbase.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_middleware/healthcheck/pluginbase.py')
-rw-r--r--oslo_middleware/healthcheck/pluginbase.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/oslo_middleware/healthcheck/pluginbase.py b/oslo_middleware/healthcheck/pluginbase.py
index eb8013d..5bb8494 100644
--- a/oslo_middleware/healthcheck/pluginbase.py
+++ b/oslo_middleware/healthcheck/pluginbase.py
@@ -44,6 +44,5 @@ class HealthcheckBaseExtension(object):
def _conf_get(self, key, group='healthcheck'):
if key in self.conf:
# Validate value type
- self.oslo_conf.set_override(key, self.conf[key], group=group,
- enforce_type=True)
+ self.oslo_conf.set_override(key, self.conf[key], group=group)
return getattr(getattr(self.oslo_conf, group), key)