HBASE-17821: The CompoundConfiguration#toString is wrong

Signed-off-by: CHIA-PING TSAI <chia7712@gmail.com>
This commit is contained in:
Yi Liang 2017-03-23 13:29:23 -07:00 committed by CHIA-PING TSAI
parent 0ec1459467
commit a9682ca5dc
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}