-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chore/enable rust backtrace in tests #376
Conversation
Pull Request Test Coverage Report for Build 5834586402
💛 - Coveralls |
I don't really understand the purpose of this. We have the |
Besides, adding The majority of our test suite should (and currently does) run with the default configuration; so unless we force |
If anything, I believe it would make more sense to add it directly within the module itself rather than the test suite, to easily get better feedback in case of a crash in |
Oh and it also struck me that some of our runtimes are implemented in Rust, and those are probably the ones you are trying to cover here... 🤦🏼♂️ What do you think about:
|
Thank you for your careful review @thibaultcha! To be fair, what motivated these commits was having a convenient way to get Rust backtraces to the logs when investigating an erratic behaviour involving Wasmtime or Wasmer. As you said, though, it can be easily achieved by adding I agree with the 3 suggestions, but maybe we only set That way we can have |
I was initially going for an unconditional setting when using a Rust-written runtime... But it does seem like |
With all that, it could indeed be interesting to add a |
When set it will add `backtraces on;` to wasm context in nginx.conf
770e031
to
515ef56
Compare
No description provided.