Website: Fix documentation of Flamenco Worker YAML task types list
The example on the project website is incorrect: ``` task_types: blender, ffmpeg, file-management, misc ``` It results in an error: ``` loading configuration: yaml: unmarshal errors:\n line 2: cannot unmarshal ||str "blender..." into []string ``` The fix seems to be adding square brackets around the list of comma delineated tasks: ``` task_types: [blender, ffmpeg, file-management, misc] ``` This results in output with the confirmation that `taskType=["blender","ffmpeg","file-management","misc"]`
This commit is contained in:
parent
6e401f882f
commit
5a25952167
@ -10,7 +10,7 @@ This is an example of such a configuration file:
|
|||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
manager_url: http://flamenco.local:8080/
|
manager_url: http://flamenco.local:8080/
|
||||||
task_types: blender, ffmpeg, file-management, misc
|
task_types: [blender, ffmpeg, file-management, misc]
|
||||||
```
|
```
|
||||||
|
|
||||||
The task types are determined by the [job compiler scripts][scripts]. The ones
|
The task types are determined by the [job compiler scripts][scripts]. The ones
|
||||||
|
Loading…
x
Reference in New Issue
Block a user