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.
This commit is contained in:
Juan Antonio Osorio Robles 2017-08-24 15:41:28 +00:00
parent dc9e363560
commit 07d8db7621
1 changed files with 1 additions and 1 deletions

View File

@ -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)