Skip to content

Commit 7882447

Browse files
Bump composefs-fs
Signed-off-by: Johan-Liebert1 <[email protected]>
1 parent 7916f8e commit 7882447

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

crates/lib/src/install.rs

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,13 @@ async fn initialize_composefs_repository(
15641564
} = &state.source.imageref;
15651565

15661566
// transport's display is already of type "<transport_type>:"
1567-
composefs_oci_pull(&Arc::new(repo), &format!("{transport}{image_name}"), None).await
1567+
composefs_oci_pull(
1568+
&Arc::new(repo),
1569+
&format!("{transport}{image_name}"),
1570+
None,
1571+
None,
1572+
)
1573+
.await
15681574
}
15691575

15701576
fn get_booted_bls() -> Result<BLSConfig> {
@@ -2099,9 +2105,10 @@ pub(crate) async fn pull_composefs_repo(
20992105

21002106
let repo = open_composefs_repo(&rootfs_dir).context("Opening compoesfs repo")?;
21012107

2102-
let (id, verity) = composefs_oci_pull(&Arc::new(repo), &format!("{transport}:{image}"), None)
2103-
.await
2104-
.context("Pulling composefs repo")?;
2108+
let (id, verity) =
2109+
composefs_oci_pull(&Arc::new(repo), &format!("{transport}:{image}"), None, None)
2110+
.await
2111+
.context("Pulling composefs repo")?;
21052112

21062113
tracing::debug!(
21072114
"id = {id}, verity = {verity}",

0 commit comments

Comments
 (0)