Skip to content

Commit

Permalink
Merge pull request #199 from rgmain/add_online_profiles_to_config
Browse files Browse the repository at this point in the history
Add 'online_profiles' Value To config_struct
  • Loading branch information
mraineri authored Mar 8, 2024
2 parents 53d2f84 + 4d62696 commit b24b414
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redfish_interop_validator/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
config_struct = {
'Tool': ['verbose'],
'Host': ['ip', 'username', 'password', 'description', 'forceauth', 'authtype', 'token'],
'Validator': ['payload', 'logdir', 'oemcheck', 'debugging', 'required_profiles_dir', 'collectionlimit']
'Validator': ['payload', 'logdir', 'oemcheck', 'online_profiles', 'debugging', 'required_profiles_dir', 'collectionlimit']
}

config_options = [x for name in config_struct for x in config_struct[name]]
Expand Down Expand Up @@ -66,4 +66,4 @@ def config_parse_to_dict(config):
my_dict[section][option] = {}
my_dict[section][option]['value'] = config[section][option]
my_dict[section][option]['description'] = "TBD"
return my_dict
return my_dict

0 comments on commit b24b414

Please sign in to comment.