Repository: hbase Updated Branches: refs/heads/branch-1 589a0e2ef -> cc700ef4c
HBASE-17821: The CompoundConfiguration#toString is wrong Signed-off-by: CHIA-PING TSAI <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/cc700ef4 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/cc700ef4 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/cc700ef4 Branch: refs/heads/branch-1 Commit: cc700ef4c14d6b5c1e5ef03444196ed02e5e605e Parents: 589a0e2 Author: Yi Liang <[email protected]> Authored: Thu Mar 23 13:29:23 2017 -0700 Committer: CHIA-PING TSAI <[email protected]> Committed: Fri Mar 31 15:13:58 2017 +0800 ---------------------------------------------------------------------- .../main/java/org/apache/hadoop/hbase/CompoundConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/cc700ef4/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java ---------------------------------------------------------------------- diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java index 6b2c8b2..ff84642 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java @@ -266,7 +266,7 @@ public class CompoundConfiguration extends Configuration { StringBuffer sb = new StringBuffer(); sb.append("CompoundConfiguration: " + this.configs.size() + " configs"); for (ImmutableConfigMap m : this.configs) { - sb.append(this.configs); + sb.append(m); } return sb.toString(); }
