Skip to content

Commit

Permalink
Missing newlines in messages from RegistryKeyMaterialFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Nov 1, 2024
1 parent 921729d commit 774f1a3
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 774f1a3

Please sign in to comment.