From ee47b9378c3de9ed4cf4673d3f4b54c193e18e90 Mon Sep 17 00:00:00 2001 From: "Bastian (BaM)" Date: Sun, 14 Sep 2025 10:54:51 +0200 Subject: [PATCH] Refactor ERROR_PATTERN in auto-boot-ollama-host.lua to simplify error message format --- scripts/auto-boot-ollama-host.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/auto-boot-ollama-host.lua b/scripts/auto-boot-ollama-host.lua index 765b3f7..c1243b5 100644 --- a/scripts/auto-boot-ollama-host.lua +++ b/scripts/auto-boot-ollama-host.lua @@ -19,7 +19,7 @@ local OLLAMA_HOST = getenv("OLLAMA_HOST", "192.168.222.12") local OLLAMA_PORT = tonumber(getenv("OLLAMA_PORT", "11434")) local ERROR_PATTERN = getenv( "ERROR_PATTERN", - ("Error: [ERROR] Document analysis failed: connect EHOSTUNREACH %s:%d"):format(OLLAMA_HOST, OLLAMA_PORT) + ("connect EHOSTUNREACH %s:%d"):format(OLLAMA_HOST, OLLAMA_PORT) ) -- Optional Wake-on-LAN