From 1afd225b876eaa319b11361f4a6ff31623f538dd Mon Sep 17 00:00:00 2001 From: 0ssigeno Date: Thu, 2 Mar 2023 14:58:50 +0100 Subject: [PATCH] Fix urls for v5.0.0 --- constants/constants.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/constants/constants.go b/constants/constants.go index 74d0a50..e207067 100644 --- a/constants/constants.go +++ b/constants/constants.go @@ -20,13 +20,13 @@ const ( // These represent analyzer endpoints URL const ( - ANALYZER_CONFIG_URL = "/api/get_analyzer_configs" + ANALYZER_CONFIG_URL = "/api/analyzer" ANALYZER_HEALTHCHECK_URL = "/api/analyzer/%s/healthcheck" ) // These represent connector endpoints URL const ( - CONNECTOR_CONFIG_URL = "/api/get_connector_configs" + CONNECTOR_CONFIG_URL = "/api/connector" CONNECTOR_HEALTHCHECK_URL = "/api/connector/%s/healthcheck" )