small config change 15/67815/1
authorfpaquett <francis.paquette@amdocs.com>
Wed, 19 Sep 2018 17:43:58 +0000 (13:43 -0400)
committerfpaquett <francis.paquette@amdocs.com>
Wed, 19 Sep 2018 17:44:35 +0000 (13:44 -0400)
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>
sparkybe-onap-application/config/spring-beans/sparky-resources.xml

index 2395f82..bcb8a72 100644 (file)
@@ -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>