这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
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
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Features
Bug Fixes
--------
* Fixes use of incorrect ssl config after retrying connection with prompted password.
* Fix ssl_context always created.


1.38.4 (2025/09/06)
Expand Down
1 change: 1 addition & 0 deletions mycli/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ Contributors:
* Mohamed Rezk
* Ryosuke Kazami
* Cornel Cruceru
* Sherlock Holo
* keltaklo


Expand Down
2 changes: 1 addition & 1 deletion mycli/sqlexecute.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def connect(
client_flag |= pymysql.constants.CLIENT.MULTI_STATEMENTS

ssl_context = None
if ssl:
if ssl and ssl.get('enable') is True:
ssl_context = self._create_ssl_ctx(ssl)

conn = pymysql.connect(
Expand Down