Will

Results 7 comments of Will

Thanks for the quick reply. Yes that makes a lot of sense now. Each node makes decisions about who to extend 'credit' to and who to ignore, based on previous...

Fair-point. I realised it was not an aim to protect "which users are connected", hence the argument for running the software all the time. I do wonder if hiding the...

This issue is affecting me as well, was about to make a PR but saw there was one already ! Thanks @charbonnierg

@wallyqs Would the simplest approach be to skip this test too, like you have done here: ```py @async_test async def test_reconnect_buf_disabled(self): pytest.skip("flaky test") ``` Or we could check the state...

Note that this is not limited to the uvloop case: https://app.travis-ci.com/github/nats-io/nats.py/jobs/589253930. It is just more common

After looking through the code a bit more it seems pretty hard to guarantee we are in the `RECONNECTING` state without having a new callback, e.g. `reconnecting_cb`, or doing some...

After a few more readings I think it makes more sense now. We can think of `relay-url` as a hint only. It tells a client that at a previous point...