This is an automated email from the ASF dual-hosted git repository.

rmani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git


The following commit(s) were added to refs/heads/master by this push:
     new 4202848a3 RANGER-5234: Audit logs not generated for Dataset 
description modifications
4202848a3 is described below

commit 4202848a33b8d98edcc01ed2a25c29cb73c96ad2
Author: Radhika Kundam <[email protected]>
AuthorDate: Thu Jun 26 14:21:09 2025 -0700

    RANGER-5234: Audit logs not generated for Dataset description modifications
    
    Signed-off-by: Ramesh Mani <[email protected]>
---
 .../org/apache/ranger/service/RangerGdsDatasetService.java  | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git 
a/security-admin/src/main/java/org/apache/ranger/service/RangerGdsDatasetService.java
 
b/security-admin/src/main/java/org/apache/ranger/service/RangerGdsDatasetService.java
index a66bfb7f6..e55f91263 100755
--- 
a/security-admin/src/main/java/org/apache/ranger/service/RangerGdsDatasetService.java
+++ 
b/security-admin/src/main/java/org/apache/ranger/service/RangerGdsDatasetService.java
@@ -83,12 +83,13 @@ public RangerGdsDatasetService() {
         sortFields.add(new SortField(SearchFilter.DATASET_ID, "obj.id", true, 
SortField.SORT_ORDER.ASC));
         sortFields.add(new SortField(SearchFilter.DATASET_NAME, "obj.name"));
 
-        trxLogAttrs.put("name",       new VTrxLogAttr("name", "Name", false, 
true));
-        trxLogAttrs.put("acl",        new VTrxLogAttr("acl", "ACL"));
-        trxLogAttrs.put("termsOfUse", new VTrxLogAttr("termsOfUse", "Terms of 
use"));
-        trxLogAttrs.put("isEnabled",  new VTrxLogAttr("isEnabled", "Dataset 
Status"));
-        trxLogAttrs.put("labels",     new VTrxLogAttr("labels", "Labels"));
-        trxLogAttrs.put("keywords",   new VTrxLogAttr("keywords", "keywords"));
+        trxLogAttrs.put("name",        new VTrxLogAttr("name", "Name", false, 
true));
+        trxLogAttrs.put("acl",         new VTrxLogAttr("acl", "ACL"));
+        trxLogAttrs.put("termsOfUse",  new VTrxLogAttr("termsOfUse", "Terms of 
use"));
+        trxLogAttrs.put("isEnabled",   new VTrxLogAttr("isEnabled", "Dataset 
Status"));
+        trxLogAttrs.put("labels",      new VTrxLogAttr("labels", "Labels"));
+        trxLogAttrs.put("keywords",    new VTrxLogAttr("keywords", 
"keywords"));
+        trxLogAttrs.put("description", new VTrxLogAttr("description", 
"Description"));
     }
 
     @Override

Reply via email to