You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let(pkg_name, pkg_ver) = env_id.split_once('@').with_context(|| format!("Failed to parse target environment {env_id} as package reference - is the target correct?"))?;
let loader = ComponentSourceLoader::new(resolution_context.wasm_loader());
75
75
76
-
let wasm = spin_compose::compose(&loader,&component).await?;
76
+
let wasm = spin_compose::compose(&loader,&component).await.with_context(|| format!("Spin needed to compose dependencies for {id} as part of target checking, but composition failed"))?;
0 commit comments