summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oslo_middleware/healthcheck/pluginbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_middleware/healthcheck/pluginbase.py b/oslo_middleware/healthcheck/pluginbase.py
index 8c6e9d4..ffd3e08 100644
--- a/oslo_middleware/healthcheck/pluginbase.py
+++ b/oslo_middleware/healthcheck/pluginbase.py
@@ -19,7 +19,7 @@ import collections
import six
HealthcheckResult = collections.namedtuple(
- 'HealthcheckResult', ['available', 'reason'], verbose=True)
+ 'HealthcheckResult', ['available', 'reason'])
@six.add_metaclass(abc.ABCMeta)