Skip to content

Commit 260970b

Browse files
Fix #2109
Signed-off-by: Archisman Mridha <[email protected]>
1 parent 7a6b81b commit 260970b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/oci/src/loader.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ impl OciLoader {
2424

2525
/// Pulls and loads an OCI Artifact and returns a LockedApp with the given OCI client and reference
2626
pub async fn load_app(&self, client: &mut Client, reference: &str) -> Result<LockedApp> {
27+
// Fix: https://github.com/fermyon/spin/issues/2109.
28+
println!("pulling spin application from registry reference {reference:?}...");
29+
2730
// Fetch app
2831
client.pull(reference).await.with_context(|| {
2932
format!("cannot pull Spin application from registry reference {reference:?}")

0 commit comments

Comments
 (0)