-
Notifications
You must be signed in to change notification settings - Fork 157
Kotlin coroutines #2454
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
Kotlin coroutines #2454
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #2454 +/- ##
============================================
- Coverage 70.52% 70.33% -0.19%
- Complexity 10036 10056 +20
============================================
Files 844 847 +3
Lines 40642 40884 +242
Branches 6161 6196 +35
============================================
+ Hits 28663 28756 +93
- Misses 9194 9326 +132
- Partials 2785 2802 +17 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Hey @dhilpipre, we had some thoughts on this PR and I figured I would consolidate everything into a single comment rather than over individual line comments. ConfigIn general, our standard is our config keys are reverse name spaced. For example, this might be an alternative to what's present now: Do these need to be "hot" settings? This can probably be simplified if the config listeners can be removed. I don't think we have many (if any) module configs that can be modified at runtime. For configurations, we normally create stand-alone config classes that integrate into our existing config service. An example is the JfrConfigImpl class. OptimizationLine 107 in 45faec9
This is using Verify RangeIf possible, the module should use |
|
@jtduffy Hi Jerry, |
|
@jtduffy Hi Jerry, I have made all of the requested changes with the exception of removing "hot deploy". |
Provides instrumentation for Kotlin Coroutines from version 1.4 onwards.