Arpad Borsos

Results 349 comments of Arpad Borsos

This example does have one problem in it, but I doubt it might be causing this. Sentry is incompatible with `#[tokio::main]` in the sense that tokio starts a bunch of...

https://docs.rs/tokio/latest/tokio/runtime/index.html has some examples.

This is pretty close to the code we use ourselves: https://github.com/getsentry/symbolicator/blob/ddf55813bb3ce01a5285a58539cfb9b1c5a138de/crates/symbolicator/src/logging.rs#L50-L60 Though we use the `fmt` builder/subscriber directly. What is the output of the tracing log itself? Also, you can...

We have updated the docs since then. It seems the doc example was valid in the sense that it compiled, but it did not assert that it actually works correctly....

Yes you are absolutely right, the `debug-images` integration is causing this problem. If you are building *and shipping* with debug info included in your binary, you do not need the...

So you are trying to access the current span from within the configured `event_mapper`? https://docs.rs/sentry/latest/sentry/integrations/tracing/struct.SentryLayer.html#method.event_mapper I don’t think there is a straight forward way right now. You can maybe use...

IMO flagging everything that has a corresponding source map as "minified" is a good idea. The name "minified" is a bit misleading, as it does not need to be "minified"...

Ah yes, my 👍🏻 was related to the comment that the cache cleanup is very naive and is just based on the filename pattern and mtime. And it also relies...

> For TS, what I was imagining was that we'd generate a .d.ts file > separately, rather than including type annotations in the generated code. Well yes, but no matter...

Another fun fact here is that the main thread defaults to the name `GeckoMain` :-D