HADOOP-14317. KMSWebServer$deprecateEnv may leak secret. Contributed by John Zhuge.
This commit is contained in:
parent
ca2488c009
commit
a9f07e0d3e
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user