HDFS-14910. Rename Snapshot with Pre Descendants Fail With IllegalArgumentException. Contributed by Wei-Chiu Chuang. (#1672)
Reviewed-by: Ayush Saxena <ayushsaxena@apache.org>
This commit is contained in:
parent
2eba262472
commit
a1b4eebcc9
|
@ -841,7 +841,8 @@ public class INodeDirectory extends INodeWithAdditionalFields
|
||||||
// If the inode has empty diff list and sf is not a
|
// If the inode has empty diff list and sf is not a
|
||||||
// DirectorySnapshottableFeature, remove the feature to save heap.
|
// DirectorySnapshottableFeature, remove the feature to save heap.
|
||||||
if (sf.getDiffs().isEmpty() &&
|
if (sf.getDiffs().isEmpty() &&
|
||||||
!(sf instanceof DirectorySnapshottableFeature)) {
|
!(sf instanceof DirectorySnapshottableFeature) &&
|
||||||
|
getDirectoryWithSnapshotFeature() != null) {
|
||||||
this.removeFeature(sf);
|
this.removeFeature(sf);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue