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")}),