Don't warn on UserCanceled alerts#2184
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. |
ctz
left a comment
There was a problem hiding this comment.
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.