-
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
DQM: Remove ClientConfig package #28380
DQM: Remove ClientConfig package #28380
Conversation
The code-checks are being triggered in jenkins. |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-28380/12710
|
A new Pull Request was created by @schneiml (Marcel Schneider) for master. It involves the following packages: Alignment/OfflineValidation @SiewYan, @andrius-k, @schneiml, @Martin-Grunewald, @rekovic, @fioriNTU, @tlampen, @alberto-sanchez, @pohsun, @santocch, @peruzzim, @cmsbuild, @agrohsje, @fwyzard, @efeyazgan, @tocheng, @jfernan2, @qliphy, @benkrikler, @mkirsano, @kmaeshima, @christopheralanwest, @franzoni, @fgolf can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
22c7d19
to
2a58288
Compare
+1 |
Comparison job queued. |
Comparison is ready Comparison Summary:
|
+1 assuming this is fine from Tracker side now (else, @rgerosa quickly jump in). |
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. @davidlange6, @silviodonato, @fabiocos (and backports should be raised in the release meeting by the corresponding L2) |
@arossi83 @sroychow please comment if there is any remaining concern and / or if you can provide suitable test configurations. |
Pull request has been put on hold by @silviodonato |
@silviodonato Tracker DQM is okay with this PR to be merged. Few bugs were discovered in configuration files in DQM/SiStripMonitorClient package. We shall make a separate PR for those. |
unhold |
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. @davidlange6, @silviodonato, @fabiocos (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
[This PR is the last one including changes from #28316. It is based on #28379, which includes the changes that make this PR possible] Edit: rebased after these PRs are merged.
This PR removes the
DQMServices/ClientConfig
package. The more important parts of its functionality (DQMGenericClient
,QualityTester
) where moved toDQMServices/Components
in #28379. What remains isDQMParserBase
, some sort of XML parsing helper based on Xerces, and a few more random files.The few modules that where using
DQMParserBase
(SiPixelMonitorClient
/SiStripMonitorClient
/SiStripCommissioningClients
) now have their parsers stubbed out. The only one of them used in the (short matrix) tests seems to be one part ofSiPixelMonitorClient
, which has been replaced with aboost::property_tree
based parser. I also implemented a parser forSiStripMonitorClient
, but could not actually test it yet (it may be used in online DQM, which I can test at some point). The others remain stubbed out, and while I could easily replace them, I am hesitant to do so without being able to test them at all.PR validation:
None for this PR, but some in #28316. No changes in PR tests expected, but most of the affected code is not covered by the PR tests. The stubbed out implementations clearly won't work, but it is questionable if they are still used anywhere. The assertions should make sure that anything using the missing functionality crashes.