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:
Sam Miller 2022-08-31 15:41:33 +02:00 committed by Sybren A. Stüvel
parent 6e401f882f
commit 5a25952167

View File

@ -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