-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Pass new signals to Tracer file #49276
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
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-49276/46638 |
|
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 |
| if self.transition == Phase.beginProcessBlock or self.transition == Phase.endProcessBlock or self.transition == Phase.writeProcessBlock or self.transition == Phase.accessInputProcessBlock: | ||
| return '' | ||
| if self.transition == Phase.startTracing: | ||
| if self.transition == Phase.finalizeEDModules or self.transition == Phase.finalizeEventSetupConfiguration or self.transition == Phase.scheduleConsistencyCheck or self.transition == Phase.createRunLumiEvents or self.transition == Phase.finishSchedule or self.transition == Phase.constructESModules or self.transition == Phase.startServices or self.transition == Phase.processPython: |
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.
How about
| if self.transition == Phase.finalizeEDModules or self.transition == Phase.finalizeEventSetupConfiguration or self.transition == Phase.scheduleConsistencyCheck or self.transition == Phase.createRunLumiEvents or self.transition == Phase.finishSchedule or self.transition == Phase.constructESModules or self.transition == Phase.startServices or self.transition == Phase.processPython: | |
| if self.transition in [Phase.finalizeEDModules, Phase.finalizeEventSetupConfiguration, Phase.scheduleConsistencyCheck, Phase.createRunLumiEvents, Phase.finishSchedule, Phase.constructESModules, Phase.startServices, Phase.processPython]: |
(or some variation of that)?
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.
Yeah, I let @copilot autocomplete that for me
|
+1 Size: This PR adds an extra 40KB 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:
|
- handle new startup related signals in Tracer file - Update edmTracerCompactLogViewer to handle new file entries - Update web view of timing for new signals.
cdced77 to
857f9fc
Compare
|
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-49276/46639 |
|
please test |
|
Pull request #49276 was updated. @Dr15Jones, @makortel, @smuzaffar can you please check and sign again. |
|
+1 Size: This PR adds an extra 44KB to repository Comparison SummarySummary:
|
PR description:
PR validation:
Code compiles. New unit test passes. Running the web viewer shows the new information.
resolves cms-sw/framework-team#1625
resolves cms-sw/framework-team#1626
resolves cms-sw/framework-team#1627