From b7397673174c7b060f6abc1b0613b88bd19146a1 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 19 Jul 2025 22:12:05 +0200 Subject: [PATCH] Enable default auto-restart for new instances in configuration --- server/pkg/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/pkg/config.go b/server/pkg/config.go index 2bc8494..12cac75 100644 --- a/server/pkg/config.go +++ b/server/pkg/config.go @@ -65,7 +65,7 @@ func LoadConfig(configPath string) (Config, error) { LogDirectory: "/tmp/llamactl", MaxInstances: 10, LlamaExecutable: "llama-server", - DefaultAutoRestart: false, + DefaultAutoRestart: true, DefaultMaxRestarts: 3, DefaultRestartDelay: 5, },