File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff 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
15701576fn 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}" ,
You can’t perform that action at this time.
0 commit comments