Skip to content

Commit

Permalink
revert prints
Browse files Browse the repository at this point in the history
  • Loading branch information
mdazam1942 committed Nov 21, 2023
1 parent fdb2490 commit 345c933
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def test_ping(self):
entry_point = EntryPoint(self.connection, self.configuration)
ping_result = run_in_thread(entry_point.ping_connection)
assert ping_result["success"] is True
assert False

def test_ping_failure(self):
connection = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def __init__(self, host, port=None, headers={}, url_modifier_function=None, cert
self.server_cert_file_content = None
self.ssl_context = False

print('cert_verify: ' + str(cert_verify))
if isinstance(cert_verify, bool):
# verify certificate non self signed case
if cert_verify:
Expand Down Expand Up @@ -112,8 +111,6 @@ async def call_api(self, endpoint, method, headers=None, cookies=None, data=None
async with RetryClient(retry_options=retry_options) as client:
call = getattr(client, method.lower())

print('self.ssl_context: ' + str(self.ssl_context))

async with call(url, headers=actual_headers, params=urldata, data=data,
ssl=self.ssl_context,
timeout=client_timeout,
Expand Down

0 comments on commit 345c933

Please sign in to comment.