Arpad Borsos
Arpad Borsos
That makes sense. Its quite interesting that some of our methods take a `T: Into`, which means you can pass it a `Arc` and it will just `Into` it, which...
That feature is indeed not available in the native SDK.
> In case of concurrent Instrumented futures, the current impl ends up nesting Futures under the first created one. For those cases, one should usually fork the Sentry Hub in...
> Hub isolation is pretty verbose as I would have to bind it to every future as it currently stand. Yes that is a bit unfortunate, but ultimately the correct...
All in all, thank you for the great feedback, this is very valuable. > I don't think I understand how Scopes are to be used. I currently create a new...
CI checks are also still unhappy :-(
Thank you for your patience and persistence here :-)
We often "abused" doctests to act as unit tests for a lot of things. Even though it would be good to have tests for this, I can also merge this...
There is a test utility that will create a new sentry with a testing transport that captures all the envelopes/events happening within a scope. You should be able to use...
I would recommend using `new_from_top` as in the example from the docs: https://docs.rs/sentry/latest/sentry/integrations/tower/index.html#usage-with-tower-http, as otherwise you would run into problems with request isolation. Otherwise, the SDK is currently only using...