Skip to content

Commit aed2cf7

Browse files
authored
Change TTFD timeout to 25 seconds (#3984)
* changed TTFD timeout to 25 seconds, to avoid competing with transaction's timeout
1 parent 84b57d0 commit aed2cf7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### Unreleased
4+
5+
### Fixes
6+
7+
- Change TTFD timeout to 25 seconds ([#3984](https://github.com/getsentry/sentry-java/pull/3984))
8+
39
## 7.19.0
410

511
### Fixes

sentry-android-core/src/main/java/io/sentry/android/core/ActivityLifecycleIntegration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public final class ActivityLifecycleIntegration
5757
static final String APP_START_COLD = "app.start.cold";
5858
static final String TTID_OP = "ui.load.initial_display";
5959
static final String TTFD_OP = "ui.load.full_display";
60-
static final long TTFD_TIMEOUT_MILLIS = 30000;
60+
static final long TTFD_TIMEOUT_MILLIS = 25000;
6161
private static final String TRACE_ORIGIN = "auto.ui.activity";
6262

6363
private final @NotNull Application application;

0 commit comments

Comments
 (0)