From d2068924c98f44e63992089551481e0d605eeee8 Mon Sep 17 00:00:00 2001 From: Junaid Saeed Uppal Date: Tue, 23 Dec 2025 23:31:08 +0500 Subject: [PATCH] Fix: Add *none request type flag to AuthGetPassword processor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Each processor needs a request type flag (*none, *authorize, *radauth, etc.) The *attributes flag is just a modifier, not a 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 3f8ad95..6cd6242 100644 --- a/cgrates.json +++ b/cgrates.json @@ -84,7 +84,7 @@ { "id": "AuthGetPassword", "filters": ["*string:~*vars.*radReqType:*radAuth"], - "flags": ["*attributes", "*continue", "*log"], + "flags": ["*none", "*attributes", "*continue", "*log"], "request_fields": [ {"tag": "Account", "path": "*cgreq.Account", "type": "*variable", "value": "~*req.User-Name"} ],