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.
2 parents 671f599 + 1b7b31e commit 0da5051Copy full SHA for 0da5051
crates/trigger/src/loader.rs
@@ -56,14 +56,6 @@ impl Loader for TriggerLoader {
56
)
57
})?;
58
let component = spin_componentize::componentize_if_necessary(&bytes)?;
59
- let was_already_component = matches!(component, std::borrow::Cow::Borrowed(_));
60
- if was_already_component {
61
- terminal::warn!(
62
- "Spin component at path {} is a WebAssembly component instead of a \
63
- WebAssembly module. Use of the WebAssembly component model is an experimental feature.",
64
- path.display()
65
- )
66
- }
67
spin_core::Component::new(engine, component.as_ref())
68
.with_context(|| format!("loading module {path:?}"))
69
}
0 commit comments