This is an automated email from the ASF dual-hosted git repository.
vel 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 581422c RANGER-2469: Adding absolute-ordering to web.xml to fix More
than one fragment error during Ranger start
581422c is described below
commit 581422ce16d696a8d50ff1a25fb2e3bcc7d3ab9f
Author: Velmurugan Periasamy <[email protected]>
AuthorDate: Thu Jun 13 16:35:27 2019 -0400
RANGER-2469: Adding absolute-ordering to web.xml to fix More than one
fragment error during Ranger start
Signed-off-by: Velmurugan Periasamy <[email protected]>
---
kms/src/main/resources/WEB-INF/web.xml | 1 +
kms/src/main/webapp/WEB-INF/web.xml | 1 +
security-admin/src/main/webapp/WEB-INF/web.xml | 1 +
3 files changed, 3 insertions(+)
diff --git a/kms/src/main/resources/WEB-INF/web.xml
b/kms/src/main/resources/WEB-INF/web.xml
index 5061a15..5e2d489 100644
--- a/kms/src/main/resources/WEB-INF/web.xml
+++ b/kms/src/main/resources/WEB-INF/web.xml
@@ -18,6 +18,7 @@
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
<display-name>ranger-kms</display-name>
+ <absolute-ordering />
<listener>
<listener-class>org.apache.hadoop.crypto.key.kms.server.KMSWebApp</listener-class>
diff --git a/kms/src/main/webapp/WEB-INF/web.xml
b/kms/src/main/webapp/WEB-INF/web.xml
index 815e2bd..c3a35bc 100644
--- a/kms/src/main/webapp/WEB-INF/web.xml
+++ b/kms/src/main/webapp/WEB-INF/web.xml
@@ -19,6 +19,7 @@
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
<display-name>ranger-kms</display-name>
+ <absolute-ordering />
<listener>
<listener-class>org.apache.hadoop.crypto.key.kms.server.KMSWebApp</listener-class>
diff --git a/security-admin/src/main/webapp/WEB-INF/web.xml
b/security-admin/src/main/webapp/WEB-INF/web.xml
index bd29a3e..806a066 100644
--- a/security-admin/src/main/webapp/WEB-INF/web.xml
+++ b/security-admin/src/main/webapp/WEB-INF/web.xml
@@ -17,6 +17,7 @@
-->
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>org.apache.ranger</display-name>
+ <absolute-ordering />
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>