HBASE-17821: The CompoundConfiguration#toString is wrong
Signed-off-by: CHIA-PING TSAI <chia7712@gmail.com>
This commit is contained in:
parent
589a0e2efb
commit
cc700ef4c1
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue