git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/HDFS-2006@1593678 13f79535-47bb-0310-9956-ffa450edef68
@@ -40,3 +40,5 @@ HDFS-2006 (Unreleased)
HDFS-6335. TestOfflineEditsViewer for XAttr. (Yi Liu via umamahesh)
HDFS-6343. fix TestNamenodeRetryCache and TestRetryCacheWithHA failures. (umamahesh)
+
+ HDFS-6366. FsImage loading failed with RemoveXattr op (umamahesh)
@@ -811,6 +811,7 @@ public class FSEditLogLoader {
case OP_REMOVE_XATTR: {
RemoveXAttrOp removeXAttrOp = (RemoveXAttrOp) op;
fsDir.unprotectedRemoveXAttr(removeXAttrOp.src, removeXAttrOp.xAttr);
+ break;
}
default:
throw new IOException("Invalid operation read " + op.opCode);