Skip to content

Commit

Permalink
fix(mysql-adapter): return SSL without hostname verification if SSL c…
Browse files Browse the repository at this point in the history
…ontext is not provided
  • Loading branch information
khamitovdr committed Dec 28, 2024
1 parent 1b5a493 commit a3d9632
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ def get_connect_args(self) -> dict:
super().get_connect_args(),
charset="utf8",
local_infile=0,
ssl=self._get_ssl_ctx(),
ssl=self._get_ssl_ctx() or {"ssl_check_hostname": False},
)

0 comments on commit a3d9632

Please sign in to comment.