ZEPPELIN-440 HiveInterpreter with multiple configuration

- Fixed style
This commit is contained in:
Jongyoul Lee 2015-11-23 18:54:12 +09:00
parent 9293d78fc3
commit 85e4914855

View file

@ -117,7 +117,8 @@ public class HiveInterpreter extends Interpreter {
for (String key : propertiesMap.keySet()) {
Properties properties = propertiesMap.get(key);
if (!properties.containsKey(DRIVER_KEY) || !properties.containsKey(URL_KEY)) {
logger.error("{} will be ignored. {}.{} and {}.{} is mandatory.", key, DRIVER_KEY, key, key, URL_KEY);
logger.error("{} will be ignored. {}.{} and {}.{} is mandatory.",
key, DRIVER_KEY, key, key, URL_KEY);
removeKeySet.add(key);
}
}