-
-
Notifications
You must be signed in to change notification settings - Fork 445
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
Weakly reference Activity for transaction finished callback #2203
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ | |
import io.sentry.util.Objects; | ||
import java.io.Closeable; | ||
import java.io.IOException; | ||
import java.lang.ref.WeakReference; | ||
import java.util.Date; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
@@ -146,6 +147,7 @@ private void stopPreviousTransactions() { | |
} | ||
|
||
private void startTracing(final @NotNull Activity activity) { | ||
WeakReference<Activity> weakActivity = new WeakReference<>(activity); | ||
if (performanceEnabled && !isRunningTransaction(activity) && hub != null) { | ||
// as we allow a single transaction running on the bound Scope, we finish the previous ones | ||
stopPreviousTransactions(); | ||
|
@@ -167,7 +169,10 @@ private void startTracing(final @NotNull Activity activity) { | |
(Date) null, | ||
true, | ||
(finishingTransaction) -> { | ||
activityFramesTracker.setMetrics(activity, finishingTransaction.getEventId()); | ||
@Nullable Activity unwrappedActivity = weakActivity.get(); | ||
if (unwrappedActivity != null) { | ||
activityFramesTracker.setMetrics(activity, finishingTransaction.getEventId()); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd log in to the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you looked at some old version of the code in this PR. It's using the |
||
}); | ||
} else { | ||
// start transaction with app start timestamp | ||
|
@@ -178,7 +183,10 @@ private void startTracing(final @NotNull Activity activity) { | |
appStartTime, | ||
true, | ||
(finishingTransaction) -> { | ||
activityFramesTracker.setMetrics(activity, finishingTransaction.getEventId()); | ||
@Nullable Activity unwrappedActivity = weakActivity.get(); | ||
if (unwrappedActivity != null) { | ||
activityFramesTracker.setMetrics(activity, finishingTransaction.getEventId()); | ||
} | ||
}); | ||
// start specific span for app start | ||
|
||
|
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.
Please try to reproduce the issue with and without the fix using LeakCanary.
Upgrade leakcanary to the latest version -> https://github.com/square/leakcanary/releases/tag/v2.9.1
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.
Tried with
2.9.1
but it didn't find anything regardless ofWeakReference
or old implementation.