Skip to content

Commit

Permalink
#114 Using kwargs for container deployer creation
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Jun 7, 2024
1 parent 205a8dc commit e76aab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exasol/nb_connector/extension_wrapper_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_container_deployer_kwargs(conf: Secrets) -> dict[str, Any]:
"""

backend = get_backend(conf)
kwargs = {
kwargs: dict[str, Any] = {
"use_ssl_cert_validation": str_to_bool(conf, CKey.cert_vld, True),
"ssl_trusted_ca": conf.get(CKey.trusted_ca),
"ssl_client_certificate": conf.get(CKey.client_cert),
Expand Down

0 comments on commit e76aab1

Please sign in to comment.