Alexander Dinauer
Alexander Dinauer
Thanks for the update.
Thanks for the PR @nandorholozsnyak, we'll take a look but it might take a while as I'm feeling a bit under the weather.
Hey @nandorholozsnyak thanks for the PR. We'll try to take a look soonish but we're in the middle of something right now, so might take a bit - sorry.
@markushi this is a limitation on older Java SDKs and Android. If you have access to a better time source, you can provide a different `SentryDate`, e.g. `SentryLongDate`.
@buckett sorry for the inconvenience, we'll bump prio on this and check what we can do.
Hey @rodolfoBee. I wouldn't use `globalHubMode: true` as this will probably leak data between requests. I can't see any usage of `SentryContext()` in your sample. Can you please give the...
The following code seems to work better: ``` @FlowPreview @GetMapping("/test1") @SentrySpan suspend fun test1(): ServerResponse = withContext(SentryContext()) { ServerResponse.ok().bodyValueAndAwait(callTestComponents()) } ``` This has some problems regarding serialization but at least...
For Spring WebMVC maybe upgrading to Spring Boot 3 could help, but I didn't test.
@omurkartal we'll have to look into how Spring treats coroutines internally and check if there's a place to hook in our code differently. Then we could set the `SentryContext()` in...
@romtsn looks to me like this is related to `@SentrySpan` not being able to handle `suspend fun` correctly as spans are also finished before everything is done. So we might...