From 73753b5bc311a1e0a02b124e5702aefebf3498db Mon Sep 17 00:00:00 2001 From: Junaid Saeed Uppal Date: Tue, 23 Dec 2025 21:03:40 +0500 Subject: [PATCH] Add *none flag to request_processor to fix unknown request type error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The processor must have a request type flag (*none, *authorize, *radauth, etc.) not just *log. Without it, reqType stays empty and hits the default switch case returning "unknown request type: <>". 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- cgrates.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgrates.json b/cgrates.json index 2277ec3..0e27af9 100644 --- a/cgrates.json +++ b/cgrates.json @@ -84,7 +84,7 @@ { "id": "TestAuthSimple", "filters": ["*string:~*vars.*radReqType:*radAuth"], - "flags": ["*log"], + "flags": ["*none", "*log"], "request_fields": [], "reply_fields": [ {"tag": "Code", "path": "*rep.*radReplyCode", "type": "*constant", "value": "AccessAccept"},