Skip to content

Commit

Permalink
adding verify option to l2cache
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Aug 3, 2023
1 parent a9e2ece commit adc66c0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions caveclient/l2cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def L2CacheClient(
pool_maxsize=None,
pool_block=None,
over_client=None,
verify=True,
):
if auth_client is None:
auth_client = AuthClient()
Expand All @@ -43,6 +44,7 @@ def L2CacheClient(
pool_maxsize=pool_maxsize,
pool_block=pool_block,
over_client=over_client,
verify=verify,
)


Expand All @@ -59,6 +61,7 @@ def __init__(
pool_maxsize=None,
pool_block=None,
over_client=None,
verify=True,
):
super(L2CacheClientLegacy, self).__init__(
server_address,
Expand All @@ -70,6 +73,7 @@ def __init__(
pool_maxsize=pool_maxsize,
pool_block=pool_block,
over_client=over_client,
verify=verify,
)
self._default_url_mapping["table_id"] = table_name
self._available_attributes = None
Expand Down

0 comments on commit adc66c0

Please sign in to comment.