From 07d8db7621e9d66e1164769b1842af27697f134f Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Robles Date: Thu, 24 Aug 2017 15:41:28 +0000 Subject: [PATCH] Remove -quiet from s_client invocation For some reason, when connecting to libvirt port on compute node, sometimes the connection returns 104 error status when -quiet is used. We need to investigate. but for now, do not use -quiet. --- novajoin_tempest_plugin/tests/scenario/novajoin_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/novajoin_tempest_plugin/tests/scenario/novajoin_manager.py b/novajoin_tempest_plugin/tests/scenario/novajoin_manager.py index f27ec1e..c4bbced 100644 --- a/novajoin_tempest_plugin/tests/scenario/novajoin_manager.py +++ b/novajoin_tempest_plugin/tests/scenario/novajoin_manager.py @@ -200,7 +200,7 @@ class NovajoinScenarioTest(manager.ScenarioTest): def verify_overcloud_tls_connection(self, controller_ip, user, hostport): """Check TLS connection. Failure will raise an exception""" - cmd = ('echo \'GET / HTTP/1.0\r\n\' | openssl s_client -quiet ' + cmd = ('echo \'GET / HTTP/1.0\r\n\' | openssl s_client ' '-connect {hostport} -tls1_2'.format(hostport=hostport)) self.execute_on_controller(user, controller_ip, cmd)