You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed a potential bug in _get_server_information() regarding buffering. Fixed a bug having to do with old versions of Python and the set module. Basic Jython 2.2 compatibility now exists.
# if old_passwords is enabled the packet will be 1 byte long and
636
636
# have the octet 254
637
637
638
-
ifauth_packet.get_bytes(0,2) ==chr(254):
638
+
ifauth_packet.is_eof_packet():
639
639
# send legacy handshake
640
640
raiseNotImplementedError, "old_passwords are not supported. Check to see if mysqld was started with --old-passwords, if old-passwords=1 in a my.cnf file, or if there are some short hashes in your mysql.user table."
0 commit comments