HADOOP-14754. TestCommonConfigurationFields failed: core-default.xml has 2 wasb properties missing in classes. Contributed by John Zhuge.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d964062f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d964062f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d964062f Branch: refs/heads/YARN-1011 Commit: d964062f66c0772f4b1a029bfcdff921fbaaf91c Parents: f13ca94 Author: Steve Loughran <ste...@apache.org> Authored: Fri Aug 11 10:18:17 2017 +0100 Committer: Steve Loughran <ste...@apache.org> Committed: Fri Aug 11 10:18:17 2017 +0100 ---------------------------------------------------------------------- .../org/apache/hadoop/conf/TestCommonConfigurationFields.java | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/d964062f/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/conf/TestCommonConfigurationFields.java ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/conf/TestCommonConfigurationFields.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/conf/TestCommonConfigurationFields.java index da37e68..d0e0a35 100644 --- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/conf/TestCommonConfigurationFields.java +++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/conf/TestCommonConfigurationFields.java @@ -103,6 +103,12 @@ public class TestCommonConfigurationFields extends TestConfigurationFieldsBase { xmlPrefixToSkipCompare.add("fs.s3n."); xmlPrefixToSkipCompare.add("s3native."); + // WASB properties are in a different subtree. + // - org.apache.hadoop.fs.azure.NativeAzureFileSystem + xmlPrefixToSkipCompare.add("fs.wasb.impl"); + xmlPrefixToSkipCompare.add("fs.wasbs.impl"); + xmlPrefixToSkipCompare.add("fs.azure."); + // ADL properties are in a different subtree // - org.apache.hadoop.hdfs.web.ADLConfKeys xmlPrefixToSkipCompare.add("adl."); --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org