Description
There's a typo in o.a.h.ipc.Client.java.
throw new IOException("Client IDs not matched: local ID=" + StringUtils.byteToHexString(clientId) + ", ID in reponse=" + StringUtils.byteToHexString(header.getClientId().toByteArray()));
It should be fixed as follows:
throw new IOException("Client IDs not matched: local ID=" + StringUtils.byteToHexString(clientId) + ", ID in response=" + StringUtils.byteToHexString(header.getClientId().toByteArray()));