HBASE-17821: The CompoundConfiguration#toString is wrong
Signed-off-by: CHIA-PING TSAI <chia7712@gmail.com>
This commit is contained in:
parent
0ec1459467
commit
a9682ca5dc
|
@ -264,7 +264,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