HADOOP-14317. KMSWebServer$deprecateEnv may leak secret. Contributed by John Zhuge.

This commit is contained in:
John Zhuge 2017-04-17 22:35:50 -07:00
parent ca2488c009
commit a9f07e0d3e

View File

@ -105,10 +105,9 @@ private static void deprecateEnv(String varName, Configuration conf,
if (value == null) { if (value == null) {
return; return;
} }
String propValue = conf.get(propName); LOG.warn("Environment variable {} is deprecated and overriding"
LOG.warn("Environment variable {} = '{}' is deprecated and overriding" + " property {}, please set the property in {} instead.",
+ " property {} = '{}', please set the property in {} instead.", varName, propName, confFile);
varName, value, propName, propValue, confFile);
conf.set(propName, value, "environment variable " + varName); conf.set(propName, value, "environment variable " + varName);
} }