-
Notifications
You must be signed in to change notification settings - Fork 375
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
[NO-TICKET] Finish autoformatting profiler with standardrb #3845
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3845 +/- ##
==========================================
- Coverage 97.84% 97.83% -0.01%
==========================================
Files 1264 1264
Lines 75726 75725 -1
Branches 3729 3729
==========================================
- Hits 74094 74087 -7
- Misses 1632 1638 +6 ☔ View full report in Codecov by Sentry. |
BenchmarksBenchmark execution time: 2024-08-14 16:56:30 Comparing candidate commit 59d640c in PR branch Found 0 performance improvements and 2 performance regressions! Performance is the same for 21 metrics, 2 unstable metrics. scenario:profiler - hold / resume
scenario:tracing - Propagation - Trace Context
|
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.
Didn't spot any sneaky cryptomining code so LGTM!
Oh this won't do @ivoanjo can we switch back to single quotes? |
Oh no, single quotes are faster confirmed! Fire up the youtube channels! Running the profiling benchmarks for PRs is a really new change (#3810) so I haven't had time to look into it, but seems that some of the benchmarks are not very stable. Maybe we just need to run them for longer, or maybe they need some tweaking to not provide false-positives? 🤔 |
What does this PR do?
In #3801 we adopted standardrb for the profiler. At the time, I left a few cops disabled:
This PR contains one of the most noisiest changes, which is using
"
for strings instead of'
.After this PR lands, all of the profiler is matching standardrb's expected style (except trailing commas, see discussion on #3801).
Motivation:
Fully adopt standardrb for profiling.
Additional Notes:
N/A
How to test the change?
This PR does not change any behaviors, so existing test coverage being green is the thing to aim for :)