Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,12 @@ private static Config processConfig(
"Miss <Sink> config! Please check the config file.");
try {
ConfigShade configShade = CONFIG_SHADES.getOrDefault(identifier, DEFAULT_SHADE);
if (Base64ConfigShade.IDENTIFIER.equals(identifier)) {
log.warn(
"Config shade '{}' encodes sensitive options, it does not encrypt them:"
+ " anyone who reads the config can decode the values.",
Base64ConfigShade.IDENTIFIER);
}
// call open method before the encrypt/decrypt
configShade.open(props);

Expand Down
Loading