summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgordon chung <gord@live.ca>2015-01-21 11:21:03 -0500
committerMehdi Abaakouk <mehdi.abaakouk@enovance.com>2015-01-26 13:32:51 +0100
commitd345a4b6a2ab63603caabaea6260351d86591165 (patch)
tree2c14898a454f2a07e4dcba044d8c918a9deff844
parent087c3f4fb8ce288aa59433e211ef48cb8679493e (diff)
downloadoslo-middleware-d345a4b6a2ab63603caabaea6260351d86591165.tar.gz
add shortcut to healthcheck middleware
shortcut to healthcheck middleware to hide module path. Change-Id: I48539b33baa7b6001bd4c8a963ada34046b12fac
-rw-r--r--oslo_middleware/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/oslo_middleware/__init__.py b/oslo_middleware/__init__.py
index a64dae0..262a7aa 100644
--- a/oslo_middleware/__init__.py
+++ b/oslo_middleware/__init__.py
@@ -13,11 +13,13 @@
__all__ = ['CatchErrors',
'CorrelationId',
'Debug',
+ 'Healthcheck',
'RequestId',
'RequestBodySizeLimiter']
from oslo_middleware.catch_errors import CatchErrors
from oslo_middleware.correlation_id import CorrelationId
from oslo_middleware.debug import Debug
+from oslo_middleware.healthcheck import Healthcheck
from oslo_middleware.request_id import RequestId
from oslo_middleware.sizelimit import RequestBodySizeLimiter