Skip to content

Commit

Permalink
Change TTFD timeout to 25 seconds (#3984)
Browse files Browse the repository at this point in the history
* changed TTFD timeout to 25 seconds, to avoid competing with transaction's timeout
  • Loading branch information
stefanosiano authored Dec 13, 2024
1 parent 84b57d0 commit aed2cf7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### Unreleased

### Fixes

- Change TTFD timeout to 25 seconds ([#3984](/~https://github.com/getsentry/sentry-java/pull/3984))

## 7.19.0

### Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public final class ActivityLifecycleIntegration
static final String APP_START_COLD = "app.start.cold";
static final String TTID_OP = "ui.load.initial_display";
static final String TTFD_OP = "ui.load.full_display";
static final long TTFD_TIMEOUT_MILLIS = 30000;
static final long TTFD_TIMEOUT_MILLIS = 25000;
private static final String TRACE_ORIGIN = "auto.ui.activity";

private final @NotNull Application application;
Expand Down

0 comments on commit aed2cf7

Please sign in to comment.