From df7cba00fd2822a1433ebed996d3a37f432491aa Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 17 Aug 2018 16:45:45 -0400 Subject: [PATCH] Amend the message on collective failure --- confluent_server/confluent/sockapi.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/confluent_server/confluent/sockapi.py b/confluent_server/confluent/sockapi.py index ea5c37e6..f5f16b99 100644 --- a/confluent_server/confluent/sockapi.py +++ b/confluent_server/confluent/sockapi.py @@ -148,9 +148,10 @@ def sessionhdl(connection, authname, skipauth=False, cert=None): tlvdata.send( connection, {'collective': {'error': 'Server either does not have ' - 'python-openssl installed or has an ' + 'python-pyopenssl installed or has an ' 'incorrect version installed ' - '(e.g. pyOpenSSL)'}}) + '(e.g. pyOpenSSL would need to be ' + 'replaced with python-pyopenssl)'}}) return return collective.handle_connection(connection, None, request['collective'], local=True)