Worker: update default task types to match what's currently in use

Flamenco v2 had a different classification of task types than Flamenco v3,
and the defaults still referenced the v2 classifications.
This commit is contained in:
Sybren A. Stüvel 2022-03-03 11:51:53 +01:00
parent 2610836861
commit a7654394b4

@ -111,7 +111,7 @@ func NewConfigWrangler() FileConfigWrangler {
func (fcw FileConfigWrangler) DefaultConfig() WorkerConfig {
return WorkerConfig{
Manager: "",
TaskTypes: []string{"sleep", "blender", "file-management", "exr-merge", "debug"},
TaskTypes: []string{"blender", "file-management", "exr-merge", "misc"},
}
}