From a7654394b40b4a367718deb664dbbb7d77a335df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 3 Mar 2022 11:51:53 +0100 Subject: [PATCH] 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. --- internal/worker/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/worker/config.go b/internal/worker/config.go index d5158441..8af2c462 100644 --- a/internal/worker/config.go +++ b/internal/worker/config.go @@ -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"}, } }