-
-
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
Use .NET 9 - Sentry SDK 5.0.0-alpha.1 #203
base: main
Are you sure you want to change the base?
Conversation
Possibly blocked by: Xamarin.UITest doesn't work with an app built with .NET 9
But |
@@ -80,6 +80,10 @@ private static IHostBuilder CreateHostBuilder(string[] args) => | |||
o.AddExceptionFilterForType<OperationCanceledException>(); | |||
o.MinimumBreadcrumbLevel = LogLevel.Debug; | |||
o.CaptureFailedRequests = true; | |||
|
|||
// https://github.com/getsentry/symbol-collector/issues/205 | |||
// o.CaptureBlockingCalls = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should get a lauchdarkly account and test this out with it (+ dogfood our feature flag integration)
.Or<SocketTimeoutException>() | ||
.SentryPolicy(s)); | ||
services.AddHttpClient<ISymbolClient, SymbolClient>(); | ||
// .ConfigurePrimaryHttpMessageHandler<AndroidMessageHandler>() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Surprised it works (CI does) without this @jamescrosswell
@jamescrosswell