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.
2 parents dbbaaab + 1d64a08 commit 2497b7bCopy full SHA for 2497b7b
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## 0.2
4
5
+### 0.2.11
6
+
7
+- Fix `'Connection' object has no attribute '_auth_plugin_name'` (#86)
8
9
### 0.2.10
10
11
- Fix ssl context pass bool.
asyncmy/connection.pyx
@@ -297,6 +297,8 @@ class Connection:
297
self._reader: Optional[StreamReader] = None
298
self._writer: Optional[StreamWriter] = None
299
300
+ self._auth_plugin_name = ""
301
302
def _create_ssl_ctx(self, sslp):
303
if isinstance(sslp, ssl.SSLContext):
304
return sslp
0 commit comments