Francesco Cogno
Francesco Cogno
Hi @upstream-dmahlberg, I'll leave to @qdm12 to decide what to do on that PR. He's much more competent than me on the subject!
I will close it for now since @Ma27 solution addresses it. We'll probably need to revise the code some time in the future to see if the upstream crate solved...
Good point! Reopened.
Hello @rahmadsandy, please correct me if I misunderstood. You are suggesting to persist the output of `wg show all dump` to use in case wireguard is restarting?
We can cache the last `wg show all dump` output but I am not sure it would help: the counters will get reset anyway at the next poll. I'll try...
That's partially what I've been doing using this tool: [bpb](https://github.com/MindFlavor/bpb). It's a custom tool build just for that, it takes json files and spits out a builder pattern request generator....
Yes of course, any help is appreciated! I might be able to take a break from the Cosmos create now (I've been focusing on than lately) and tackle this but...
This PR should give you the function you need: https://github.com/MindFlavor/AzureSDKForRust/pull/258. It's almost done, I just need to fix the crate version and I will merge it.
Implemented in [https://github.com/MindFlavor/AzureSDKForRust/releases/tag/blob_0.43.1](https://github.com/MindFlavor/AzureSDKForRust/releases/tag/blob_0.43.1)!
The read access is completed. It's included in [release 0.7.1](https://github.com/MindFlavor/AzureSDKForRust/releases/tag/0.7.1) merged by #43 . For example: ```rust let stream = Blob::stream( &client, &container_name, file_name, None, &Range::new(0, 4096), None, 1024, );...