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 c075209 commit eb02b6fCopy full SHA for eb02b6f
backend/infrahub/workers/dependencies.py
@@ -35,7 +35,9 @@ def get_component_type() -> ComponentType:
35
36
37
def build_client() -> InfrahubClient:
38
- client = 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)
39
+ client_config.set_ssl_context(context=get_http().verify_tls())
40
+ client = InfrahubClient(config=client_config)
41
# Populate client schema cache using our internal schema cache
42
if registry.schema:
43
for branch in registry.schema.get_branches():
0 commit comments