Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ibm_platform_services/global_catalog_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def new_instance(
def __init__(
self,
authenticator: Authenticator = None,
disable_ssl_verification: bool = False
) -> None:
"""
Construct a new client for the Global Catalog service.
Expand All @@ -76,7 +77,8 @@ def __init__(
Get up to date information from https://github.com/IBM/python-sdk-core/blob/main/README.md
about initializing the authenticator of your choice.
"""
BaseService.__init__(self, service_url=self.DEFAULT_SERVICE_URL, authenticator=authenticator)
BaseService.__init__(self, service_url=self.DEFAULT_SERVICE_URL, authenticator=authenticator,
disable_ssl_verification=disable_ssl_verification)

#########################
# Object
Expand Down
3 changes: 2 additions & 1 deletion ibm_platform_services/global_search_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def __init__(
Get up to date information from https://github.com/IBM/python-sdk-core/blob/main/README.md
about initializing the authenticator of your choice.
"""
BaseService.__init__(self, service_url=self.DEFAULT_SERVICE_URL, authenticator=authenticator)
BaseService.__init__(self, service_url=self.DEFAULT_SERVICE_URL, authenticator=authenticator,
disable_ssl_verification=authenticator.token_manager.disable_ssl_verification)

#########################
# Search
Expand Down