Description of job config hints in new doc page is wrong

The 'configs' field is not a dictionary, it is actually
a list of dictionaries.  Update the description.

Closes-Bug: #1357615
Change-Id: I540abe050f1d81e36f4b5dcca547a7e5c3514c84
This commit is contained in:
Trevor McKay 2014-10-01 12:34:14 -04:00
parent bc218a786c
commit 61be4ece04
1 changed files with 6 additions and 1 deletions

View File

@ -107,7 +107,12 @@ parameters, and arguments are used by different job types.
*Returns*: a dictionary of the following form, containing hints for configs,
parameters, and arguments for the job type:
{'job_config': {'configs': {}, 'params': {}, 'args': []}}
{'job_config': {'configs': [], 'params': {}, 'args': []}}
* *args* is a list of strings
* *params* contains simple key/value pairs
* each item in *configs* is a dictionary with entries
for 'name' (required), 'value', and 'description'
get_supported_job_types()