Comment 3 for bug 752975

Revision history for this message
Geert JM Vanderkelen (geertjmvdk) wrote :

Hey,

Thanks for reporting this bug!
I'm trying to reproduce this. If I understand the problem, if you kill the connection, you would get an error, right?
Something like this:

    cnx = mysql.connector.connect(user='root')
    print(cnx.connection_id)
    cnx.protocol.cmd_process_kill(cnx.connection_id)
    cnx.connect()
    print(cnx.connection_id)

Could you get a small test case like the above?

Cheers,
Geert