From 8c8855554e7a0886030b9035f27319dc1e7bb9bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 29 Jul 2022 09:54:29 +0200 Subject: [PATCH] Manager: remove `--factory-startup` from default Blender arguments Remove `--factory-startup` from the default Blender arguments. This makes it simpler to configure each Worker to use its own GPU, without having to inject Python code into the arguments. Users can always add this when they need, but I think it's friendlier to have Blender behave the same when they manually run it and when used by Flamenco Worker. --- internal/manager/config/defaults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/manager/config/defaults.go b/internal/manager/config/defaults.go index 4a1af7d4..55f53770 100644 --- a/internal/manager/config/defaults.go +++ b/internal/manager/config/defaults.go @@ -9,7 +9,7 @@ import ( // SPDX-License-Identifier: GPL-3.0-or-later -const DefaultBlenderArguments = "--factory-startup -b -y" +const DefaultBlenderArguments = "-b -y" // The default configuration, use DefaultConfig() to obtain a copy. var defaultConfig = Conf{