From 4578970b3b7fc9630ec96d4b3d2565b891d99e98 Mon Sep 17 00:00:00 2001 From: Patrick Valsecchi Date: Fri, 25 Jan 2019 13:04:43 +0100 Subject: [PATCH] Remove duplicated health check from the index --- c2cwsgiutils/index.py | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/c2cwsgiutils/index.py b/c2cwsgiutils/index.py index bebce5ef6..42547de0f 100644 --- a/c2cwsgiutils/index.py +++ b/c2cwsgiutils/index.py @@ -54,7 +54,6 @@ def _index(request: pyramid.request.Request) -> pyramid.response.Response:
""" - response.text += _health_check(request) response.text += _health_check(request) response.text += _stats(request) response.text += _versions(request) diff --git a/setup.py b/setup.py index 9c89b24b3..95c17a3bc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages -VERSION = '2.17.1' +VERSION = '2.17.2' HERE = os.path.abspath(os.path.dirname(__file__)) INSTALL_REQUIRES = [ pkg.split('==')[0]