Skip to content
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

Fix params for Payload Inspector #34728

Merged
merged 2 commits into from Aug 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions CondCore/Utilities/scripts/getPayloadData.py
Expand Up @@ -191,10 +191,10 @@ def discover():
two_tags = plot_method.isTwoTags()
output(' - is Two Tags: ', two_tags)
plot_dict = { 'plot': plot, 'plugin_name': plugin_name, 'title': plot_title, 'plot_type': plot_type, 'single_iov': single_iov, 'two_tags': two_tags }
#if modv.label == '2.0':
# input_params = plot_method.inputParams()
# output(' - input params: ', len(input_params))
# plot_dict[ 'input_params'] = input_params
if modv.label == '2.0':
input_params = plot_method.inputParams()
output(' - input params: ', len(input_params))
plot_dict[ 'input_params'] = input_params
result.setdefault(payload_type, []).append( plot_dict )
output('currently discovered info: ', result)
output('*** final output:', '')
Expand Down