From 03f47078de3c328eeef6e32d8f30874365fbcd65 Mon Sep 17 00:00:00 2001 From: Junaid Saeed Uppal Date: Tue, 23 Dec 2025 23:20:13 +0500 Subject: [PATCH] Use *message flag instead of *dry_run for attributes fetch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit *dry_run was not recognized. Using *message which is a valid request type that works with *attributes flag. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- cgrates.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cgrates.json b/cgrates.json index 332a4e9..7feacde 100644 --- a/cgrates.json +++ b/cgrates.json @@ -84,9 +84,10 @@ { "id": "AuthGetPassword", "filters": ["*string:~*vars.*radReqType:*radAuth"], - "flags": ["*dry_run", "*attributes", "*continue", "*log"], + "flags": ["*message", "*attributes", "*continue", "*log"], "request_fields": [ - {"tag": "Account", "path": "*cgreq.Account", "type": "*composed", "value": "~*req.User-Name", "mandatory": true} + {"tag": "Account", "path": "*cgreq.Account", "type": "*composed", "value": "~*req.User-Name", "mandatory": true}, + {"tag": "PasswordFromAttributes", "path": "*cgreq.PasswordFromAttributes", "type": "*constant", "value": "*attributes"} ], "reply_fields": [ {"tag": "SessionTimeout", "path": "*rep.Session-Timeout", "type": "*constant", "value": "3600"},