HDFS-8371. Fix test failure in TestHdfsConfigFields for spanreceiver properties. Contributed by Ray Chiang.

(cherry picked from commit cbc01ed08e)
This commit is contained in:
Akira Ajisaka 2015-05-15 12:14:03 +09:00
parent ad3196e016
commit 2e5b7f24ab
2 changed files with 7 additions and 0 deletions

View File

@ -431,6 +431,9 @@ Release 2.8.0 - UNRELEASED
HDFS-8150. Make getFileChecksum fail for blocks under construction
(J.Andreina via vinayakumarb)
HDFS-8371. Fix test failure in TestHdfsConfigFields for spanreceiver
properties. (Ray Chiang via aajisaka)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -76,5 +76,9 @@ public class TestHdfsConfigFields extends TestConfigurationFieldsBase {
// Some properties have moved to HdfsClientConfigKeys
xmlPropsToSkipCompare.add("dfs.client.short.circuit.replica.stale.threshold.ms");
// Ignore SpanReceiveHost properties
xmlPropsToSkipCompare.add("dfs.htrace.spanreceiver.classes");
xmlPropsToSkipCompare.add("dfs.client.htrace.spanreceiver.classes");
}
}