Skip to content

Commit f83dc56

Browse files
committed
test timeout to see what CI does
1 parent 16e21d8 commit f83dc56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Sentry.Unity.Android/SentryNativeAndroid.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void Configure(SentryUnityOptions options, ISentryUnityInfo sentry
4343

4444
options.DiagnosticLogger?.LogDebug("Checking whether the Android SDK has already been initialized");
4545

46-
if (SentryJava.IsEnabled(JniExecutor, TimeSpan.FromMilliseconds(200)))
46+
if (SentryJava.IsEnabled(JniExecutor, TimeSpan.FromSeconds(10)))
4747
{
4848
options.DiagnosticLogger?.LogDebug("The Android SDK is already initialized");
4949
}
@@ -52,11 +52,11 @@ public static void Configure(SentryUnityOptions options, ISentryUnityInfo sentry
5252
options.DiagnosticLogger?.LogInfo("Initializing the Android SDK");
5353

5454
// Local testing had Init at an average of about 25ms.
55-
SentryJava.Init(JniExecutor, options, TimeSpan.FromMilliseconds(200));
55+
SentryJava.Init(JniExecutor, options, TimeSpan.FromSeconds(10));
5656

5757
options.DiagnosticLogger?.LogDebug("Validating Android SDK initialization");
5858

59-
if (!SentryJava.IsEnabled(JniExecutor, TimeSpan.FromMilliseconds(200)))
59+
if (!SentryJava.IsEnabled(JniExecutor, TimeSpan.FromSeconds(10)))
6060
{
6161
options.DiagnosticLogger?.LogError("Failed to initialize Android Native Support");
6262
return;

0 commit comments

Comments
 (0)