Skip to content

Commit

Permalink
Fixed a log message in WSConnector
Browse files Browse the repository at this point in the history
  • Loading branch information
craigpratt committed May 11, 2020
1 parent fcc2815 commit 7c5badb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micronets-gw-service/app/ws_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async def setup_connection (self):
ssl_context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
# Setup the client's cert
client_cert_path = pathlib.Path (self.tls_certkey_file)
logger.debug (f"Loading test client certificate from {client_cert_path}")
logger.debug (f"Loading client certificate from {client_cert_path}")
ssl_context.load_cert_chain (client_cert_path)

if (self.tls_ca_file):
Expand Down

0 comments on commit 7c5badb

Please # to comment.