-
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
Remove usedFallback argument from (pre|post)(Open|Close)File #36400
Conversation
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-36400/27203
|
A new Pull Request was created by @makortel (Matti Kortelainen) for master. It involves the following packages:
@cmsbuild, @smuzaffar, @Dr15Jones, @makortel, @fwyzard can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
@cmsbuild, please test |
-1 Failed Tests: UnitTests Unit TestsI found errors in the following unit tests: ---> test TestIntegrationGetBy had ERRORS Comparison SummarySummary:
|
In order to remove the boolean argument to (pre|post)(Open|Close)File signals. It wasn't that useful anyway in Tracer since it doesn't impact framework scheduling.
We can not give a meaningful value in the pre signals anyway, and there are use cases left for it in the post signals.
8a15264
to
67ebd70
Compare
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-36400/27241
|
Pull request #36400 was updated. @cmsbuild, @smuzaffar, @Dr15Jones, @makortel, @fwyzard can you please check and sign again. |
@cmsbuild, please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-79a8dd/21104/summary.html Comparison SummarySummary:
|
+heterogeneous |
+core |
This pull request is fully signed and it will be integrated in one of the next master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @perrotta, @dpiparo, @qliphy (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
After #35505 the "useFallback" information is not available yet for
preOpenFile
signal, and delivering it viapostOpenFile
signal would be a bit cumbersome. Currently this boolean is used only byTracer
Service in(pre|post)OpenFile
. TheTracer
Service is the only user of the same boolean in(pre|post)CloseFile
. We concluded that these printouts are not that useful (they don't affect framework's scheduling). This PR removes those printouts, and the boolean argument for the(pre|post)(Open|Close)File
signals.PR validation:
Code compiles.