git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-1@1459194 13f79535-47bb-0310-9956-ffa450edef68
@@ -25,6 +25,9 @@ Release 1.3.0 - unreleased
MAPREDUCE-5038. old API CombineFileInputFormat missing fixes that are
in new API. (sandyr via tucu)
+ HDFS-4622. Remove redundant synchronized from
+ FSNamesystem#rollEditLog in branch-1. (Jing Zhao via suresh)
+
Release 1.2.0 - unreleased
INCOMPATIBLE CHANGES
@@ -5616,7 +5616,7 @@ public class FSNamesystem implements FSConstants, FSNamesystemMBean, FSClusterSt
return getEditLog().getEditLogSize();
}
- synchronized CheckpointSignature rollEditLog() throws IOException {
+ CheckpointSignature rollEditLog() throws IOException {
checkSuperuserPrivilege();
synchronized (this) {
if (isInSafeMode()) {