Commit e288dfb1 authored by Darshan M N's avatar Darshan M N
Browse files

Changing the path for Dashboards ES URL g

parent 7436e2a6
No related merge requests found
Showing with 5 additions and 3 deletions
+5 -3
......@@ -51,8 +51,10 @@ public class RestService {
private String quadnaryUsername;
@Value("${services.esindexer.quadnary.password}")
private String quadnaryPassword;
@Value("${services.esindexer.quadnary.host}")
private String indexServiceQuadnaryHost;
@Value("${services.esindexer.quadnary.host.name}")
private String indexServiceQuadnaryHostName;
@Value("${services.esindexer.quadnary.host.port}")
private String indexServiceQuadnaryPort;
@Autowired
private RetryTemplate retryTemplate;
......@@ -76,7 +78,7 @@ public class RestService {
} else if (instance.equals(Constants.TERNARY)) {
url = (indexServiceTernaryHost) + index + indexServiceHostSearch;
} else if (instance.equals(Constants.QUADNARY)) {
url = (indexServiceQuadnaryHost) + index + indexServiceHostSearch;
url = (indexServiceQuadnaryHostName) + ":" + (indexServiceQuadnaryPort) + "/" + index + indexServiceHostSearch;
}
HttpHeaders headers = getHttpHeaders(instance);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment