From 90b918512c88ddcdf88f6a6a91c629ee64eb6acd Mon Sep 17 00:00:00 2001 From: "Bastian (BaM)" Date: Sun, 14 Sep 2025 15:01:39 +0200 Subject: [PATCH] Update error pattern message for SSH connection failure to enhance clarity --- 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 7fee491..1d39edd 100644 --- a/scripts/auto-boot-ollama-host.lua +++ b/scripts/auto-boot-ollama-host.lua @@ -41,7 +41,7 @@ local SSH_PORT = tonumber(getenv("SSH_PORT", "22")) local SSH_IDENTITY_FILE = getenv("SSH_IDENTITY_FILE", "/root/.ssh/id_rsa") -- e.g. "/path/to/id_rsa" local ERROR_PATTERN = getenv( "ERROR_PATTERN", - ("connect EHOSTUNREACH %s:%d"):format(OLLAMA_HOST, OLLAMA_PORT) + ("[ERROR] Document analysis failed: connect EHOSTUNREACH %s:%d"):format(OLLAMA_HOST, OLLAMA_PORT) ) local FINISH_PATTERN = getenv("FINISH_PATTERN", "[DEBUG] Finished fetching. Found 0 documents.") -- e.g. "Server started"