azure-webpubsub
azure-webpubsub copied to clipboard
[Bugbash] AckId is int32 but can't be negative
When the ackId is negative, the message can't be delivered. The connection will be aborted 3 times later.
Nice catch, in JavaScript the max number is 2^53 - 1, how about changing ackId to ulong?