We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33955f commit 2b54551Copy full SHA for 2b54551
backend/infrahub/workers/dependencies.py
@@ -34,7 +34,9 @@ def get_component_type() -> ComponentType:
34
35
36
def build_client() -> InfrahubClient:
37
- return InfrahubClient(config=Config(address=config.SETTINGS.main.internal_address, retry_on_failure=True))
+ client_config = Config(address=config.SETTINGS.main.internal_address, retry_on_failure=True)
38
+ client_config.set_ssl_context(context=get_http().verify_tls())
39
+ return InfrahubClient(config=client_config)
40
41
42
@inject
0 commit comments