aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBansal, Nitin (nb121v) <nitin.bansal@amdocs.com>2019-01-25 15:07:51 -0500
committerBansal, Nitin (nb121v) <nitin.bansal@amdocs.com>2019-01-25 15:09:14 -0500
commit10c04810902a100fbeba93dda5b13329ada39117 (patch)
tree0cd7974f932e9ac8149576c7e3209015e6d47ed6
parent5e0074ffbdfa2d8c864f677dff33eefd567af241 (diff)
align router code with 1.2.1 version of rest
align router code with 1.2.1 version of rest client Change-Id: Id5ad1f925aa9b12b960b5186d724cfa1413161d4 Issue-ID: AAI-2120 Signed-off-by: Bansal, Nitin (nb121v) <nitin.bansal@amdocs.com>
-rw-r--r--pom.xml2
-rw-r--r--src/main/java/org/onap/aai/datarouter/util/SearchServiceAgent.java5
2 files changed, 3 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index bf4e813..b3280ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -225,7 +225,7 @@ limitations under the License.
<dependency>
<groupId>org.onap.aai</groupId>
<artifactId>rest-client</artifactId>
- <version>1.1.0</version>
+ <version>1.2.1</version>
</dependency>
<dependency>
diff --git a/src/main/java/org/onap/aai/datarouter/util/SearchServiceAgent.java b/src/main/java/org/onap/aai/datarouter/util/SearchServiceAgent.java
index 612a40e..4baa81a 100644
--- a/src/main/java/org/onap/aai/datarouter/util/SearchServiceAgent.java
+++ b/src/main/java/org/onap/aai/datarouter/util/SearchServiceAgent.java
@@ -101,10 +101,9 @@ public class SearchServiceAgent {
searchClient = new RestClient()
.authenticationMode(RestAuthenticationMode.SSL_CERT)
.validateServerHostname(false)
- .validateServerCertChain(true)
+ .validateServerCertChain(false)
.clientCertFile(DataRouterConstants.DR_HOME_AUTH + certName)
- .clientCertPassword(deobfuscatedCertPassword)
- .trustStore(DataRouterConstants.DR_HOME_AUTH + keystore);
+ .clientCertPassword(deobfuscatedCertPassword);
this.searchUrl = searchUrl;
this.documentEndpoint = documentEndpoint;