Skip to content

Commit

Permalink
ODP-1120: printing the final values of the nifi properties file1
Browse files Browse the repository at this point in the history
  • Loading branch information
manishsinghmowall committed Feb 28, 2024
1 parent a7b0f47 commit cae1fd2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1173,6 +1173,10 @@ class ConfigEncryptionTool {

// Write the updated values back to the file
outputNiFiPropertiesFile.text = linesToPersist.join("\n")
println("Values in outputNiFiPropertiesFile:")
outputNiFiPropertiesFile.eachLine { line ->
println(line)
}
} catch (IOException e) {
def msg = "Encountered an exception updating the nifi.properties file with the encrypted values"
logger.error(msg, e)
Expand Down

0 comments on commit cae1fd2

Please sign in to comment.