Repository: ambari Updated Branches: refs/heads/branch-2.5 9b73dbe35 -> 5069100f6
AMBARI-18595 Icons don't display in Windows 10 Microsoft Edge or Internet Explorer 11 (Vivek Ratnavel Subramanian via zhewang) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5069100f Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5069100f Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5069100f Branch: refs/heads/branch-2.5 Commit: 5069100f64f0ee9007b7688a881fdac49f31fb24 Parents: 9b73dbe Author: Zhe (Joe) Wang <[email protected]> Authored: Fri Nov 4 13:53:27 2016 -0700 Committer: Zhe (Joe) Wang <[email protected]> Committed: Fri Nov 4 13:53:27 2016 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/ambari/server/controller/AmbariServer.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/5069100f/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java b/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java index 4b939fe..99203bd 100644 --- a/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java +++ b/ambari-server/src/main/java/org/apache/ambari/server/controller/AmbariServer.java @@ -787,6 +787,7 @@ public class AmbariServer { EnumSet.of(DispatcherType.REQUEST)); gzipFilter.setInitParameter("methods", "GET,POST,PUT,DELETE"); + gzipFilter.setInitParameter("excludePathPatterns", ".*(\\.woff|\\.ttf|\\.woff2|\\.eot|\\.svg)"); gzipFilter.setInitParameter("mimeTypes", "text/html,text/plain,text/xml,text/css,application/x-javascript," + "application/xml,application/x-www-form-urlencoded," +
