Rodrigo Boratto

Results 28 comments of Rodrigo Boratto

I'm facing this issue as well, in production. Just audio returns the `(-1004) Could not connect to the server` after a while and it can't recover from it. After the...

feel free to send some PRs! =)

I can confirm that this error still happens on firebase_performance: ^0.8.0+14 , but only if you don't call stop.

I'm not sure if this is my issue, but consider this: #### Config - `PingInterval` is 5 seconds - `MaxPingsOutstanding` = 2 - **nats client will only perceive its disconnection...

By `client sends ASYNC messages`, it is because of the `JetStream` test. Testing code: ```go package main import ( "fmt" "github.com/nats-io/nats.go" "os" "os/signal" "syscall" "time" ) func main() { signals...

I have added the error handler, nothing there. Also, the `PublishAsync` doesn't report any errors. But I discovered something interesting: *If I disconnect from the internet and BEFORE connection goes...

Oh, I was typing then you answered. So this is the expected behaviour? Loose all my async pending requests when it goes to `stale`? Well, seems we already have a...

@kozlovic thank you for all this clarification. I think the easiest path, using JS, will be to use `PublishSync` and then just re-send the message in case of failure. Or...

Isn't that easy. The cache interface returns a Thunk[V], which is like a "callback function". It is not possible to "encode" and save it on Redis. Based on this answer...

Since we are experiencing the same issue here, I took the pro-activity to create the PR with proposed solution. It works on CockroachDB, but I haven't tested it on any...