-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Moved construction of ProductResolvers to a separate function #47051
base: master
Are you sure you want to change the base?
Conversation
cms-bot internal usage |
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-47051/43196 ERROR: Build errors found during clang-tidy run.
|
processHistoryID_(), | ||
processHistoryIDBeforeConfig_(), | ||
processConfiguration_(&pc), | ||
productResolvers_(resolvers.begin(), resolvers.end()), |
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.
Note, the type of productResolvers_
and resolvers
is slightly different (since productResolvers_
uses the edm:propagate_const
on the elements) which is why I need to use the iterators.
8e37e06
to
31c0d22
Compare
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-47051/43197
Code check has found code style and quality issues which could be resolved by applying following patch(s)
|
31c0d22
to
b2ae435
Compare
-code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-47051/43198
Code check has found code style and quality issues which could be resolved by applying following patch(s)
|
b2ae435
to
5e50df4
Compare
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-47051/43199
|
A new Pull Request was created by @Dr15Jones for master. It involves the following packages:
@Dr15Jones, @cmsbuild, @makortel, @smuzaffar can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
-1 Failed Tests: UnitTests Unit TestsI found 1 errors in the following unit tests: ---> test runtestPhysicsToolsPatAlgos had ERRORS Comparison SummarySummary:
|
d501e8c
to
91b9436
Compare
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-47051/43233
|
Pull request #47051 was updated. @Dr15Jones, @antoniovagnerini, @civanch, @cmsbuild, @kpedro88, @makortel, @mdhildreth, @rseidita, @smuzaffar can you please check and sign again. |
please test |
+1 Size: This PR adds an extra 64KB to repository The following merge commits were also included on top of IB + this PR after doing git cms-merge-topic:
You can see more details here: Comparison SummarySummary:
|
There seems to be another non-reproducibility in phase2 workflows after #46416 was resolved, I opened #47071 |
+core |
+1 |
PR description:
Refactored how ProductResolvers are constructed. This should allow easier changes for the future.
PR validation:
Code compiles and all framework tests pass.
resolves cms-sw/framework-team#1145