-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
Update to Unity 2022.3.55f1 #1938
Conversation
For some reason when exporting the
to the
|
ec22fe6
to
f6a04fa
Compare
e104120
to
46649b7
Compare
46649b7
to
e104120
Compare
@@ -9,7 +9,7 @@ namespace Sentry.Unity.Android; | |||
internal class JniExecutor : IJniExecutor | |||
{ | |||
// We're capping out at 16ms - 1 frame at 60 frames per second | |||
private static readonly TimeSpan DefaultTimeout = TimeSpan.FromMilliseconds(16); | |||
private static readonly TimeSpan DefaultTimeout = TimeSpan.FromMilliseconds(2000); |
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.
What is this timeout used for? The comment above indicates some relationship to giving up after causing 1 frame dropped. 2 seconds is quite large of a UI freeze
@@ -44,7 +44,7 @@ public static void Configure(SentryUnityOptions options, ISentryUnityInfo sentry | |||
options.DiagnosticLogger?.LogDebug("The Android SDK is already initialized"); | |||
} | |||
// Local testing had Init at an average of about 25ms. | |||
else if (!SentryJava.Init(JniExecutor, options, TimeSpan.FromMilliseconds(200))) | |||
else if (!SentryJava.Init(JniExecutor, options, TimeSpan.FromMilliseconds(2000))) |
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.
Ideally we control these timeouts centrally, and name them in a meaninful way so we know what they are representing.
1b8fa25
to
d764ebe
Compare
#skip-changelog
Auto-generated by create-pull-request