Matt Brittan
Matt Brittan
Currently this package stores the connection status in a `uint32` protected by a `RWMutex`: ```go status uint32 // see const definitions at top of file for possible values sync.RWMutex //...
Update documentation/comments to clarify when the `connect()` function returns. The function returns after transmitting the `CONNECT` packet but before the `CONNACK` is received/processed (this is done in the network loop)....
### Summary The documentation for custom validation states: "If an empty object is returned the form will be valid and submit" but if the validation function returns `{}` then, after...
This issue is from a [stack overflow question](https://stackoverflow.com/questions/71390835/golang-query-scan-not-scanning-query-correctly-into-struct/71392040?noredirect=1#comment126630779_71392040). I guess this could be classed as "unexpected behaviour" but as it deviates from the standard library I believe it's probably unintended....
Eclipse is reogranising repos to move projects off the main `github.com/eclipse` repo. This repo is now ` github.com/eclipse-paho/paho.mqtt.golang`. Github redirects should, hopefully, mean that this change has no impact on...
Section 4.7.2 of the MQTT 3.1 spec states: > The Server MUST NOT match Topic Filters starting with a wildcard character (# or +) with Topic Names beginning with a...
Note: This issue was raised to promote discussion of PR #718 There are a few issues with logging in this library: - The logger is global which can make it...
This issue was triggeded by the now closed PR #719 as I feel this is something worth discussing/changing. Currently the filestore panics in a number of situations: - `Open` if...