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 2c0e57e commit d3c6589Copy full SHA for d3c6589
lib/mysql/connector/connection_cext.py
@@ -175,13 +175,6 @@ def in_transaction(self):
175
return self._server_status & ServerFlag.STATUS_IN_TRANS
176
177
def _open_connection(self):
178
- if (
179
- self._auth_plugin == "authentication_kerberos_client"
180
- and os.name == "nt"
181
- ):
182
- raise errors.ProgrammingError(
183
- "The Kerberos authentication is not available on Windows"
184
- )
185
charset_name = CharacterSet.get_info(self._charset_id)[0]
186
self._cmysql = _mysql_connector.MySQL( # pylint: disable=E1101,I1101
187
buffered=self._buffered,
0 commit comments