From 5a7d4e63b3a840d4ab27b9e945b69c5511b8c1df Mon Sep 17 00:00:00 2001 From: Nick <148735107+nick-bisonai@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:06:46 +0900 Subject: [PATCH] feat: use unstrict endpoint from reporter (#2356) --- node/pkg/reporter/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/pkg/reporter/utils.go b/node/pkg/reporter/utils.go index 0d48ed992..3aa307116 100644 --- a/node/pkg/reporter/utils.go +++ b/node/pkg/reporter/utils.go @@ -42,7 +42,7 @@ func GetDeviatingAggregates(latestSubmittedData *sync.Map, latestData *sync.Map, } func GetLatestDataRest(ctx context.Context, name []string) (map[string]SubmissionData, error) { - url := fmt.Sprintf("http://orakl-dal.orakl.svc.cluster.local/latest-data-feeds/%s", strings.Join(name, ",")) + url := fmt.Sprintf("http://orakl-dal.orakl.svc.cluster.local/latest-data-feeds-unstrict/%s", strings.Join(name, ",")) resp, err := request.Request[[]RawSubmissionData]( request.WithEndpoint(url), request.WithHeaders(map[string]string{"X-API-Key": secrets.GetSecret("API_KEY")}),