From 2e08fbf269b31c0400489e14dd8a2538e330edf9 Mon Sep 17 00:00:00 2001 From: xudan Date: Thu, 13 Jul 2017 22:03:27 -0400 Subject: Delete the ERROR log when it is not https JIRA: DOVETAIL-462 1. If it is not https, Dovetail will give a error log 2017-07-13 21:58:30,409 - container.Container - ERROR - The command 'openstack catalog show identity |awk '/public/ {print $4}'| grep 'https'' failed. 2. Remove this error log becuase it is not an error. Change-Id: I5791b1925cad8606d70eefd4940dd9bf46956305 Signed-off-by: xudan --- dovetail/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dovetail/container.py') diff --git a/dovetail/container.py b/dovetail/container.py index 2108cdc1..2d9701bf 100644 --- a/dovetail/container.py +++ b/dovetail/container.py @@ -177,7 +177,7 @@ class Container(object): cacert_volume = "" https_enabled = dt_utils.check_https_enabled(cls.logger) cacert = os.getenv('OS_CACERT',) - if https_enabled == 0: + if https_enabled: cls.logger.info("https enabled...") if cacert is not None: if not os.path.isfile(cacert): -- cgit 1.2.3-korg