Matt Williamson

Results 24 comments of Matt Williamson
trafficstars

I was seeing this exact thing when using manual ACKs without QoS. Adding QoS with a prefetch of 1 worked, but seems like a hack. `conn.close()` and `ch.close` did not...

The prefetch buffer is leaked when the connection and channel are closed. This is a bug. Even this example has no QoS in it: https://github.com/streadway/amqp/blob/master/_examples/simple-consumer/consumer.go

Just to make sure you don't chase your tail, the memory leak goes away when using `QoS` of 1, but when not using QoS, closing the channel and connection do...

Buullllllshhiiiiiitttttttt

It could have easily been done by adding a new function instead of breaking tons and tons of projects. I, myself have about 20 that were with 8 developers on...

Retry or return `nil`? Backwards compatibility is important stuff. I don't know why you would downplay it.

This is a category name collision. If you just change to `(Blocks2)` for example, it will work.

Also, my SpotMicro won't walk. Using Noetic. Champ config works great.

Just comment out these four commented lines in `ps4_spp.c`: ```c // #if CONFIG_IDF_COMPATIBILITY >= IDF_COMPATIBILITY_MASTER_D9CE0BB // esp_bt_gap_set_scan_mode(ESP_BT_CONNECTABLE, ESP_BT_NON_DISCOVERABLE); // #elif CONFIG_IDF_COMPATIBILITY >= IDF_COMPATIBILITY_MASTER_21AF1D7 esp_bt_gap_set_scan_mode(ESP_BT_SCAN_MODE_CONNECTABLE); // #endif ```

For me, I'm using a GPS to get the current time and calculate sunset and sunrise to open and close a door. As soon as I get the time from...