-
Notifications
You must be signed in to change notification settings - Fork 726
Don't warn on UserCanceled alerts #2184
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
Conversation
Benchmark resultsInstruction countsSignificant differencesThere are no significant instruction count differences Other differencesClick to expand
Wall-timeSignificant differencesThere are no significant wall-time differences Other differencesClick to expand
Additional informationCheckout details:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2184 +/- ##
==========================================
- Coverage 94.66% 94.65% -0.01%
==========================================
Files 102 102
Lines 23748 24031 +283
==========================================
+ Hits 22480 22746 +266
- Misses 1268 1285 +17 ☔ View full report in Codecov by Sentry. |
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.
Maybe we could gate this warn!
under debug_assertions
instead? I don't think a warning alert is ever actionable in production, but it's nice to have it in logs for debugging purposes.
Maybe we could note https://bugs.openjdk.org/browse/JDK-8323517 and https://bugs.openjdk.org/browse/JDK-8282600 somewhere, because AIUI Java is the only implementation that sends user_canceled
like it's going out of fashion (I believe NSS also sends it, but that is under user control and matches the purpose of the alert.)
Adapted as suggested by @ctz. |
Fixes #2182.