-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Removes unnecessary AccountsDb::new_with_config_for_benches() #34484
Removes unnecessary AccountsDb::new_with_config_for_benches() #34484
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #34484 +/- ##
=========================================
- Coverage 81.8% 81.8% -0.1%
=========================================
Files 820 820
Lines 220799 220790 -9
=========================================
- Hits 180706 180653 -53
- Misses 40093 40137 +44 |
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.
I like it! Just the one comment about cluster-type which I think we can lump in with this one; if you'd rather not re-run CI, I'm probably fine with that too
4e014ec
to
3ce189f
Compare
Ah bummer, I needed to resolve conflicts (likely because I merged #34485 first), so I've force-pushed those changes. Nothing within the PR has changed though. |
automerge label removed due to a CI failure |
Problem
There are too many AccountsDb constructors. AccountsDb::new_with_config_for_benches() is unnecessary. The current callers can new
AccountsDb::new_with_config()
instead.Summary of Changes
Remove AccountsDb::new_with_config_for_benches() and update callers.