Swanand Mulay
Swanand Mulay
I will try once again with generating certs on my own tomorrow!
I used provision to generate certs: ```sh # generate ca certs $ ./provision ca # generate server certs for rumqttd $ ./provision server --ca ca.cert.pem --cakey ca.key.pem --domain "localhost" ```...
That's great to hear! Need to figure out a way to tackle issue caused due to enabling both features together! ref: https://github.com/sdroege/async-tungstenite/issues/78#issuecomment-1847677437
Hey, thanks for reporting, the way we handle `ws` / `wss` differently from `tcp` is the root of this. I think it is handled that way because when using websockets,...
Hey @tmbull, as you mentioned already, maintainers' time is the blocker, and I think getting those PRs reviewed before merging would be better, but if its urgent, we can try...
Hey, One use of $ is to have [shared subscription](https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901250), like `$share/group/topic` in v5. This will be added by #628 PR. Other than that, I can't think of a reason...
> The Server SHOULD prevent Clients from using such Topic Names to exchange messages with other Clients It's also mentioned that we should prevent use of such topic names. So...
We can allow subscriptions to $ like NOOP ( unless they are `$share` or something our server publishes to ). Thank you for clarifying! [`validate_subscription()`](https://github.com/bytebeamio/rumqtt/blob/main/rumqttd/src/router/routing.rs#L1398) functions need to be updated...
Good catch! I totally missed the publish part haha. For MeterData part, can you open a new issue? just so it's discussion will be easier to find by others. Thanks...
> Our client keeps disconnecting after reconnect, effectively getting stuck in a reconnect loop 'forever' as the broker keeps sending the PUBREL > if you are reconnecting by just polling...