summaryrefslogtreecommitdiffstats
path: root/music-rest/src/main/java
diff options
context:
space:
mode:
authorTschaen, Brendan <ctschaen@att.com>2020-04-18 10:36:07 -0400
committerTschaen, Brendan <ctschaen@att.com>2020-04-18 10:45:11 -0400
commit0c173cdf44af313e376f1e8ae4fd6e6973c6c20b (patch)
treeca8a4ceb7cceb93c7763457561a0af149be15f3e /music-rest/src/main/java
parentc905534f0165b029ad70554638cbd1f13814e879 (diff)
Default Cipher to empty string
Issue-ID: MUSIC-582 Signed-off-by: Tschaen, Brendan <ctschaen@att.com> Change-Id: I85a59925a40e196847983a7e60aa6d30b046d7e8
Diffstat (limited to 'music-rest/src/main/java')
-rw-r--r--music-rest/src/main/java/org/onap/music/main/PropertiesLoader.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/music-rest/src/main/java/org/onap/music/main/PropertiesLoader.java b/music-rest/src/main/java/org/onap/music/main/PropertiesLoader.java
index e98031d9..11dc51dd 100644
--- a/music-rest/src/main/java/org/onap/music/main/PropertiesLoader.java
+++ b/music-rest/src/main/java/org/onap/music/main/PropertiesLoader.java
@@ -119,7 +119,7 @@ public class PropertiesLoader implements InitializingBean {
@Value("${music.aaf.ns}")
private String musicAafNs;
- @Value("${cipher.enc.key}")
+ @Value("${cipher.enc.key:}")
private String cipherEncKey;
@SuppressWarnings("unused")