Skip to content

Commit

Permalink
Merge pull request #1678 from nandhu-kumar/develop
Browse files Browse the repository at this point in the history
DSD-6075 | Made changes on healthcheck class to adapt base URL from config
  • Loading branch information
mohanachandran-s authored Nov 26, 2024
2 parents ce0a0af + a711a34 commit 7726b47
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ public void run() {

public static String checkActuatorNoAuth(String actuatorURL) {
Response response = null;
actuatorURL = GlobalMethods.addToServerEndPointMap(actuatorURL);
response = given().contentType(ContentType.JSON).get(actuatorURL);
if (response != null && response.getStatusCode() == 200) {
logger.info(response.getBody().asString());
Expand Down

0 comments on commit 7726b47

Please sign in to comment.