Michael Guay

Results 12 comments of Michael Guay

We faced a similar issue and utilized the consumer heartbeat event to determine if the consumer was still alive. I.e, if it had a heartbeat within the configured `sessionTimeout`.

@Blutude That is correct. However, we recently upgraded to `v2.1.0` and are no longer seeing this issue. Can you try reproducing on the latest version and confirm?

I believe this is linked, and I can no longer reproduce https://github.com/tulios/kafkajs/issues/1163 I can see the same `ETIMEDOUT` in your logs as well. I think `enforceRequestTimeout` was recently changed to...

I can no longer reproduce this on `v2.1.0`. Can anyone confirm otherwise?

I believe this is fixed by https://github.com/tulios/kafkajs/pull/1337

We saw the same thing on `v1.16.0` and were initially listening for the `consumer.crash` event to start a re-connect. However we also saw inconsistency with this event firing reliably, sometimes...

Thanks @epoberezkin. I read the security docs and understand we shouldn't use this in production - but is there not a way we can find a middle ground so that...

@epoberezkin Ok - appreciate the quick reply.

I ended up going with your first suggestion @cjam - looks something like this: ``` async pause() { await SpotifyRemote.pause(); if (this.pauseInterval) { clearInterval(this.pauseInterval); } this.pauseInterval = setInterval(async () =>...

This is also an issue for me. Universal links do nothing when paired with the `url` parameter. The same link works perfectly fine when clicked on through SMS, etc. I've...