Test sentry + tide + async-std
Issue: Random segmentation fault when a panic is called in a tide request handler.
How to reproduce:
Start the test
$ cargo run
Call the route that will panic
$ curl "http://localhost:8080/"
How to debug:
Build binary and start LLDB
$ cargo build
$ rust-lldb target/debug/test-sentry
Call the route that will panic
$ curl "http://localhost:8080/"
In lldb:
r
: run the binaryup
: wind up the backtraceq
: quit
Re-run the program and call the route until the program have a segfault.
The backtrace is in the export-lldb file