summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Eckersberg <jeckersb@redhat.com>2021-08-05 20:33:06 +0000
committerJohn Eckersberg <jeckersb@redhat.com>2021-08-10 16:55:36 -0400
commitfc49e04e6df4f3245ae8a313d8ba4a54d48c42a0 (patch)
treec3e9dca6276bcd603e7bb663e2772d4b9cccacfc
parentee5eed86549b695255d7a9f313a59290604e6212 (diff)
downloadoslo-messaging-fc49e04e6df4f3245ae8a313d8ba4a54d48c42a0.tar.gz
Revert "Disable AMQP 1.0 SSL unit tests"
This reverts commit 8f5cfda6642ea7f75206d3183c2507e2e83c5693. Reason for revert: This was supposed to be temporary to unblock the gate. Whatever broke SSL cert generation in the first place appears to be fixed because I can run SSL tests now. Change-Id: I4f286cf3af0d578f472b84fe355c812910c7a121
-rw-r--r--oslo_messaging/tests/drivers/test_amqp_driver.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/oslo_messaging/tests/drivers/test_amqp_driver.py b/oslo_messaging/tests/drivers/test_amqp_driver.py
index 72667e4..506849b 100644
--- a/oslo_messaging/tests/drivers/test_amqp_driver.py
+++ b/oslo_messaging/tests/drivers/test_amqp_driver.py
@@ -55,8 +55,7 @@ _proton = importutils.try_import("proton")
CYRUS_ENABLED = (pyngus and pyngus.VERSION >= (2, 0, 0) and _proton and
getattr(_proton.SASL, "extended", lambda: False)())
# same with SSL
-# SSL_ENABLED = (_proton and getattr(_proton.SSL, "present", lambda: False)())
-SSL_ENABLED = False
+SSL_ENABLED = (_proton and getattr(_proton.SSL, "present", lambda: False)())
LOG = logging.getLogger(__name__)