Skip to content

Commit 2045174

Browse files
Dev/connection impl (#70)
* added code to test the connectvity * Replace the url with actual url and implemented other functionlity * merge from main * update caseurnmapper to urnmapper * update caseurnmapper to urnmapper * update caseurnmapper to urnmapper * update caseurnmapper to urnmapper * update pact flow test * updated code for pact testing * added logs * dummy change to trigger build --------- Co-authored-by: Dmitri Algazin <dmitri.algazin@hmcts.net>
1 parent 8b4576c commit 2045174

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/uk/gov/hmcts/cp/services/CaseUrnMapperService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public String getCaseId(final String caseUrn) {
3636
getRequestEntity(),
3737
CaseMapperResponse.class
3838
);
39-
LOG.info("CaseMapperResponse is : {} and body : {} caseurn : {} ", responseEntity.getStatusCode(), responseEntity.getBody(), caseUrn);
39+
LOG.info(" CaseMapperResponse is : {} and body : {} caseurn : {} ", responseEntity.getStatusCode(), responseEntity.getBody(), caseUrn);
4040

4141
if (responseEntity.getStatusCode().is2xxSuccessful() && responseEntity.getBody() != null) {
4242
CaseMapperResponse body = responseEntity.getBody();
@@ -50,7 +50,7 @@ public String getCaseId(final String caseUrn) {
5050

5151
public String getCaseMapperServiceUrl() {
5252
if (this.caseMapperServiceUrl != null) {
53-
LOG.info("caseMapperServiceUrl is : {}", this.caseMapperServiceUrl);
53+
LOG.info(" caseMapperServiceUrl is : {}", this.caseMapperServiceUrl);
5454
return this.caseMapperServiceUrl;
5555
}
5656
LOG.atError().log("caseMapperServiceUrl is empty");

0 commit comments

Comments
 (0)