Ryan
Ryan
Hi @Vesafary, I've found the source of the issue. You're using an outdated version of bb8-diesel. When I made a pr to upgrade bb8-diesel to the newer version of bb8,...
Not sure what's going on, haven't messed with this in a long time, but did you try using the tokio 1.21? That's the version the library is using so that...
Hey @aaarkid, I've run into the same issue. Did you come up with a solution?
> What OS are you trying this on? MacOS. I ended up solving the problem by creating multiple tokio tasks. One task calls `notification_stream.next().await` and sends the data through a...
I made a proof of concept [here](https://gist.github.com/rust-play/ade87888d3c546c981005e64e0b77ecf) but I have a more real implementation in [this file](https://github.com/BeaconBrigade/arctic/blob/main/src/v2.rs) for a project I'm contributing to which has the real btleplug.
I see your email now
That makes sense. I thougt about doing something like `tokio::select!` on the notification stream and like a command queue but was worried what the effect of cancelling the `notification_stream.next()` future...