From a4c5b8d4d46b85364e0be918996a871cd7f946ea Mon Sep 17 00:00:00 2001 From: Edward Hope-Morley Date: Wed, 11 Mar 2015 11:57:29 +0000 Subject: [PATCH] [trivial] fix is_ssl_enabled to not always return True --- hooks/keystone_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/keystone_utils.py b/hooks/keystone_utils.py index cad138ce..df8d580c 100644 --- a/hooks/keystone_utils.py +++ b/hooks/keystone_utils.py @@ -869,7 +869,7 @@ def is_ssl_enabled(): return True log("SSL/HTTPS is NOT enabled", level=DEBUG) - return True + return False def get_ssl_cert_master_votes():