Skip to content

Commit

Permalink
Merge pull request #34728 from Dres90/master
Browse files Browse the repository at this point in the history
Fix params for Payload Inspector
  • Loading branch information
cmsbuild authored Aug 11, 2021
2 parents 8f85f65 + 4f0171d commit 931b91d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CondCore/Utilities/scripts/getPayloadData.py
Original file line number Diff line number Diff line change
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

0 comments on commit 931b91d

Please sign in to comment.