🧱 update CI workflow and remove alpinejs frontend files
Some checks failed
CI / Lint (push) Successful in 21s
CI / Helm Lint (push) Successful in 5s
CI / Build (push) Failing after 43s
CI / Test (push) Has been skipped

This commit is contained in:
Christian van Dijk
2026-02-23 15:46:31 +01:00
parent a545ef5af4
commit a6daab7961
17 changed files with 78 additions and 53 deletions

View File

@@ -32,7 +32,7 @@ local function move_to_dlq(red, event_json, reason)
log.warn("Event moved to DLQ", { reason = reason, dlq_key = DLQ_KEY })
end
local function process_event(red, event_json)
local function process_event(_red, event_json)
local ok_decode, event = pcall(cjson.decode, event_json)
if not ok_decode or not event then
return false, "decode_failed"