Simon Woolf
Simon Woolf
FWIW: the plan was always for deltas to only work in browsers that support ArrayBuffer & Uint8Array - the vcdiff plugin we're using was written to use them; we were...
(relatedly: now that Microsoft has (finally) ended support for IE8, we should consider dropping support for it, after checking usage is sufficiently low. Then we could at least assume ES5...
> On that basis, I think I'd support dropping support for IE < 11 that would be nice -- even getting rid of 9 would let us remove the jsonp...
Presumably the suspend timeout (120s) and the comet recv timeout (90s). Really the warning is a red herring, and making changes to avoid it won't actually change the things the...
Update: customer has confirmed that the keepAlive workaround was effective, so we need to figure out a more permanent fix.
If you mean just for making rest requests, the same workaround applies - add `restAgentOptions: {keepAlive: false}` to the clientOptions object. E.g. `new Ably.Rest({ key: 'xxx', restAgentOptions: {keepAlive: false}});`. If...
> Any ideas how we can analyse how can we analyse what's contributing to the large lib size? Quick hack to grunt:concat to print the length of everything concatenated, sorted...
As a stopgap until the streaming api is available, if needed we can pretty easily add support for mqtt over websockets, allowing people to use a js mqtt library (of...
There's no such option as `connect: false`. You may be thinking of `autoConnect`. ably-js is a pretty standalone library -- it doesn't interact with the DOM in any way (with...
Hello @ajoslin103. Thanks for reporting an issue with ably-js, and providing a reproducible test case. The cause of the issue appears to be a bug in chromium's setTimeout function when...