The following bit of code works with the v1.4.2 jars but fails with the v1.4.3 jars.
Instance mock = new MockInstance();
Connector connector = mock.getConnector("root",
"password".getBytes());
Using a blank password, as below, works in both releases.
Instance mock = new MockInstance();
Connector connector = mock.getConnector("root", "".getBytes());
Is my understanding correct?
