Skip to content

Commit c80e809

Browse files
committed
Fix maybe_async
Signed-off-by: Jiahao XU <[email protected]>
1 parent 46d0890 commit c80e809

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Cargo.lock

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gix/src/clone/fetch/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl PrepareFetch {
5858
P: crate::NestedProgress,
5959
P::SubProgress: 'static,
6060
{
61-
self.fetch_only_inner(&mut progress, should_interrupt)
61+
self.fetch_only_inner(&mut progress, should_interrupt).await
6262
}
6363

6464
#[gix_protocol::maybe_async::maybe_async]

gix/src/remote/connection/fetch/receive_pack.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ where
7878
P: gix_features::progress::NestedProgress,
7979
P::SubProgress: 'static,
8080
{
81-
self.receive_inner(&mut progress, should_interrupt)
81+
self.receive_inner(&mut progress, should_interrupt).await
8282
}
8383

8484
#[gix_protocol::maybe_async::maybe_async]

0 commit comments

Comments
 (0)