We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab5c34b commit c8ebd96Copy full SHA for c8ebd96
src/imageproxy.rs
@@ -545,6 +545,11 @@ impl ImageProxy {
545
/// <https://github.com/opencontainers/image-spec/blob/main/descriptor.md>
546
///
547
/// The requested size and digest are verified (by the proxy process).
548
+ ///
549
+ /// Note that because of the implementation details of this function, you should
550
+ /// [`futures::join!`] the returned futures instead of polling one after the other. The
551
+ /// secondary "driver" future will only return once everything has been read from
552
+ /// the reader future.
553
#[instrument]
554
pub async fn get_blob(
555
&self,
0 commit comments