-
-
Notifications
You must be signed in to change notification settings - Fork 366
chore: Remove hang tracker sdk v9 checks #6334
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
base: main
Are you sure you want to change the base?
Conversation
❌ 15 Tests Failed:
View the top 3 failed test(s) by shortest run time
View the full list of 1 ❄️ flaky test(s)
To view more test analytics, go to the Test Analytics Dashboard |
# if !SDK_V9 | ||
/** | ||
* AppHangTrackingV2 can differentiate between fully-blocking and non-fully blocking app hangs. | ||
* fully-blocking app hang is when the main thread is stuck completely, and the app can't render a | ||
* single frame. A non-fully-blocking app hang is when the app appears stuck to the user but can | ||
still | ||
* render a few frames. Fully-blocking app hangs are more actionable because the stacktrace shows | ||
the | ||
* exact blocking location on the main thread. As the main thread isn't completely blocked, | ||
* non-fully-blocking app hangs can have a stacktrace that doesn't highlight the exact blocking | ||
* location. | ||
* | ||
* You can use @c enableReportNonFullyBlockingAppHangs to ignore non-fully-blocking app hangs. | ||
* | ||
* @note This flag wins over enableAppHangTracking. When enabling both enableAppHangTracking and | ||
enableAppHangTrackingV2, the SDK only enables enableAppHangTrackingV2 and disables | ||
enableAppHangTracking. | ||
*/ |
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.
h
: We must migrate this info to the enableAppHangTracking
option. Now macOS uses V1 and iOS/tvOS V2.
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.
By this you mean the comment right? I can update that
Rolls out hang tracker v2 for sdk v9
#skip-changelog
Closes #6335