Merge pull request #963 from dorianj/cancellation

Fix byte representation of CancelRequest message
This commit is contained in:
Brian C 2016-03-30 12:18:27 -05:00
commit eabbebaea8

View File

@ -159,7 +159,7 @@ Connection.prototype.cancel = function(processID, secretKey) {
.addInt16(5678)
.addInt32(processID)
.addInt32(secretKey)
.addCString('').flush();
.flush();
var length = bodyBuffer.length + 4;