-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Move processor builders into internal service #10782
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #10782 +/- ##
==========================================
+ Coverage 91.87% 91.89% +0.02%
==========================================
Files 410 411 +1
Lines 19268 19316 +48
==========================================
+ Hits 17702 17750 +48
Misses 1217 1217
Partials 349 349 ☔ View full report in Codecov by Sentry. |
dmathieu
force-pushed
the
move-processor-builder
branch
2 times, most recently
from
August 1, 2024 13:02
fa17244
to
7b8b1c5
Compare
dmathieu
force-pushed
the
move-processor-builder
branch
from
August 1, 2024 13:08
7b8b1c5
to
431e7d8
Compare
dmathieu
force-pushed
the
move-processor-builder
branch
from
August 2, 2024 08:29
284fab3
to
18debff
Compare
dmathieu
force-pushed
the
move-processor-builder
branch
from
August 19, 2024 09:11
96c4846
to
2481787
Compare
mx-psi
approved these changes
Aug 22, 2024
dmathieu
force-pushed
the
move-processor-builder
branch
from
August 22, 2024 08:56
f7d48d8
to
cdc74cb
Compare
Last one! |
mx-psi
pushed a commit
that referenced
this pull request
Aug 30, 2024
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue. Ex. Adding a feature - Explain what this achieves.--> #### Description There builders were deprecated in 0.108.0, so they can be removed now. PRs that deprecated the builders: * #10781 * #10782 * #10783 * #10784 * #10785 cc @mx-psi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This moves the processor builder out of the
processor
package, and intoservice/internal/builders
.There's no real reason for this struct to be public (folks shouldn't call it), and making it private will allow us to add profiling support to it.
Link to tracking issue
#10375 (review)