Do not dump HealthcheckResult class source

If verbose is true, the class definition is printed just
before being built. We don't really need to print this into
our logs, so we should drop the verbose parameter (as it
defaults to False anyway).

Closes-Bug: #1482744
Change-Id: Ic6cb7fe9c87151bb0c318d060fd88bb2e1977404
This commit is contained in:
Davanum Srinivas
2015-08-17 07:42:05 -04:00
parent 1441de4a1a
commit e458a3f3f4

View File

@@ -19,7 +19,7 @@ import collections
import six
HealthcheckResult = collections.namedtuple(
'HealthcheckResult', ['available', 'reason'], verbose=True)
'HealthcheckResult', ['available', 'reason'])
@six.add_metaclass(abc.ABCMeta)