We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a6b81b commit 260970bCopy full SHA for 260970b
crates/oci/src/loader.rs
@@ -24,6 +24,9 @@ impl OciLoader {
24
25
/// Pulls and loads an OCI Artifact and returns a LockedApp with the given OCI client and reference
26
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
+
30
// Fetch app
31
client.pull(reference).await.with_context(|| {
32
format!("cannot pull Spin application from registry reference {reference:?}")
0 commit comments