Skip to content
Merged
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 @@ -81,13 +81,13 @@ public KeyMaterial materialize() throws IOException, InterruptedException {
if (configJsonPath.exists()) {
String configJson = configJsonPath.readToString();
if (StringUtils.isNotBlank(configJson)) {
launcher.getListener().getLogger().print("Using the existing docker config file.");
launcher.getListener().getLogger().println("Using the existing docker config file.");

JSONObject json = JSONObject.fromObject(configJson);
for (String property : BLACKLISTED_PROPERTIES) {
Object value = json.remove(property);
if (value != null) {
launcher.getListener().getLogger().print("Removing blacklisted property: " + property);
launcher.getListener().getLogger().println("Removing blacklisted property: " + property);
}
}

Expand Down