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 62f6197 + bbd1b8e commit 4c04dd9Copy full SHA for 4c04dd9
containerd-shim-spin/src/engine.rs
@@ -45,6 +45,10 @@ impl Default for SpinEngine {
45
// turned on for the components we compile.
46
let mut config = wasmtime::Config::default();
47
config.epoch_interruption(true);
48
+ // Turn off native unwinding to avoid faulty libunwind detection error
49
+ // TODO: This can be removed once the Wasmtime fix is brought into Spin
50
+ // Issue to track: https://github.com/fermyon/spin/issues/2889
51
+ config.native_unwind_info(false);
52
Self {
53
wasmtime_engine: wasmtime::Engine::new(&config).unwrap(),
54
}
0 commit comments