diff options
author | fpaquett <francis.paquette@amdocs.com> | 2018-09-19 13:43:58 -0400 |
---|---|---|
committer | fpaquett <francis.paquette@amdocs.com> | 2018-09-19 13:44:35 -0400 |
commit | c760d9b34a423f1260118720ac36e1c7b46608b7 (patch) | |
tree | 7305e76ea4e19f53ccaf3197a0610a6c6ebed71a /sparkybe-onap-application/config/spring-beans/sparky-resources.xml | |
parent | 237fd67563dca13cf254a921f4f011995e82fc11 (diff) |
small config change
With the use of sprint templates, the ":" would not translate correctly.
Forcing the value to be OBF:
Issue-ID: AAI-1643
Change-Id: Iafa19234c313c2a7bb881ecffe46917276714414
Signed-off-by: fpaquett <francis.paquette@amdocs.com>
Diffstat (limited to 'sparkybe-onap-application/config/spring-beans/sparky-resources.xml')
-rw-r--r-- | sparkybe-onap-application/config/spring-beans/sparky-resources.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sparkybe-onap-application/config/spring-beans/sparky-resources.xml b/sparkybe-onap-application/config/spring-beans/sparky-resources.xml index 2395f82..bcb8a72 100644 --- a/sparkybe-onap-application/config/spring-beans/sparky-resources.xml +++ b/sparkybe-onap-application/config/spring-beans/sparky-resources.xml @@ -12,7 +12,7 @@ <property name="connectTimeoutInMs" value="60000" /> <property name="readTimeoutInMs" value="30000" /> <property name="basicAuthUserName" value="${resources.basicAuthUserName:}" /> - <property name="basicAuthPassword" value="${resources.basicAuthPassword:}" /> + <property name="basicAuthPassword" value="OBF:${resources.basicAuthPassword:}" /> <property name="certFileName" value="/auth/${resources.client-cert}" /> <property name="certPassword" value="OBF:${resources.client-cert-password}" /> <property name="truststoreFileName" value="/auth/${resources.trust-store}" /> @@ -27,4 +27,4 @@ <constructor-arg ref="aaiRestEndpointConfig" /> </bean> -</beans>
\ No newline at end of file +</beans> |