You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by su...@apache.org on 2011/03/22 17:49:59 UTC

svn commit: r1084248 - in /hadoop/common/branches/branch-0.20-security: CHANGES.txt src/webapps/hdfs/dfshealth.jsp src/webapps/hdfs/dfsnodelist.jsp

Author: suresh
Date: Tue Mar 22 16:49:58 2011
New Revision: 1084248

URL: http://svn.apache.org/viewvc?rev=1084248&view=rev
Log:
HDFS-1758. Make Web UI JSP pages thread safe. Contributed by Tanping Wang.

Modified:
    hadoop/common/branches/branch-0.20-security/CHANGES.txt
    hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfshealth.jsp
    hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfsnodelist.jsp

Modified: hadoop/common/branches/branch-0.20-security/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security/CHANGES.txt?rev=1084248&r1=1084247&r2=1084248&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security/CHANGES.txt (original)
+++ hadoop/common/branches/branch-0.20-security/CHANGES.txt Tue Mar 22 16:49:58 2011
@@ -8,6 +8,8 @@ Release 0.20.204.0 - unreleased
     HDFS-1750. ListPathsServlet should not use HdfsFileStatus.getLocalName()
     to get file name since it may return an empty string.  (szetszwo)
 
+    HDFS-1758. Make Web UI JSP pages thread safe. (Tanping via suresh)
+
 Release 0.20.203.0 - unreleased
 
     HADOOP-7190. Add metrics v1 back for backwards compatibility. (omalley)

Modified: hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfshealth.jsp
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfshealth.jsp?rev=1084248&r1=1084247&r2=1084248&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfshealth.jsp (original)
+++ hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfshealth.jsp Tue Mar 22 16:49:58 2011
@@ -1,5 +1,6 @@
 <%@ page
   contentType="text/html; charset=UTF-8"
+  isThreadSafe="false"
   import="javax.servlet.*"
   import="javax.servlet.http.*"
   import="java.io.*"

Modified: hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfsnodelist.jsp
URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfsnodelist.jsp?rev=1084248&r1=1084247&r2=1084248&view=diff
==============================================================================
--- hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfsnodelist.jsp (original)
+++ hadoop/common/branches/branch-0.20-security/src/webapps/hdfs/dfsnodelist.jsp Tue Mar 22 16:49:58 2011
@@ -1,5 +1,6 @@
 <%@ page
-contentType="text/html; charset=UTF-8"
+    contentType="text/html; charset=UTF-8"
+    isThreadSafe="false"
 	import="javax.servlet.*"
 	import="javax.servlet.http.*"
 	import="java.io.*"