Repository: hadoop Updated Branches: refs/heads/branch-3.2 91c916e20 -> c0f618f3d
HDFS-14002. TestLayoutVersion#testNameNodeFeatureMinimumCompatibleLayoutVersions fails. Contributed by Takanobu Asanuma. (cherry picked from commit be1cffb0854cb28967beb062e9db7d61e6eeff1d) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/c0f618f3 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/c0f618f3 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/c0f618f3 Branch: refs/heads/branch-3.2 Commit: c0f618f3d58eaa296c81115d34838d07c3bbbed5 Parents: 91c916e Author: Inigo Goiri <[email protected]> Authored: Thu Oct 18 15:25:53 2018 -0700 Committer: Inigo Goiri <[email protected]> Committed: Thu Oct 18 17:14:56 2018 -0700 ---------------------------------------------------------------------- .../java/org/apache/hadoop/hdfs/protocol/TestLayoutVersion.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/c0f618f3/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/protocol/TestLayoutVersion.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/protocol/TestLayoutVersion.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/protocol/TestLayoutVersion.java index e944b81..2c9905d 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/protocol/TestLayoutVersion.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/protocol/TestLayoutVersion.java @@ -127,7 +127,8 @@ public class TestLayoutVersion { NameNodeLayoutVersion.Feature.TRUNCATE, NameNodeLayoutVersion.Feature.APPEND_NEW_BLOCK, NameNodeLayoutVersion.Feature.QUOTA_BY_STORAGE_TYPE, - NameNodeLayoutVersion.Feature.ERASURE_CODING); + NameNodeLayoutVersion.Feature.ERASURE_CODING, + NameNodeLayoutVersion.Feature.EXPANDED_STRING_TABLE); for (LayoutFeature f : compatibleFeatures) { assertEquals(String.format("Expected minimum compatible layout version " + "%d for feature %s.", baseLV, f), baseLV, --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
