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

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


The following commit(s) were added to refs/heads/master by this push:
     new cd3ab8262 ATLAS-4827 : Clean Atlas application log
cd3ab8262 is described below

commit cd3ab82627761ee9ea8b44a8c7769de9bb54db11
Author: vinayak.marraiya <vinayak.marra...@cloudera.com>
AuthorDate: Fri Mar 1 15:24:18 2024 +0530

    ATLAS-4827 : Clean Atlas application log
    
    Signed-off-by: Pinal Shah <pinal.s...@freestoneinfotech.com>
---
 .../src/main/java/org/apache/atlas/web/filters/ActiveServerFilter.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/webapp/src/main/java/org/apache/atlas/web/filters/ActiveServerFilter.java 
b/webapp/src/main/java/org/apache/atlas/web/filters/ActiveServerFilter.java
index e19beccb1..e264fa30f 100644
--- a/webapp/src/main/java/org/apache/atlas/web/filters/ActiveServerFilter.java
+++ b/webapp/src/main/java/org/apache/atlas/web/filters/ActiveServerFilter.java
@@ -119,7 +119,7 @@ public class ActiveServerFilter implements Filter {
         if(requestURI.contains("/admin/")) {
             for (String s : adminUriNotFiltered) {
                 if (requestURI.contains(s)) {
-                    LOG.error("URL not supported in HA mode: {}", requestURI);
+                    LOG.trace("URL not supported in HA mode: {}", requestURI);
                     return false;
                 }
             }

Reply via email to