diff --git a/utils/http.go b/utils/http.go index ac48700b4..46194feca 100644 --- a/utils/http.go +++ b/utils/http.go @@ -16,7 +16,7 @@ const ( // Get - When err is nil, resp always contains a non-nil resp.Body. // Caller should close resp.Body when done reading from it. func Get(url string, client *http.Client) (*http.Response, error) { - req, err := http.NewRequest(http.MethodPost, url, nil) + req, err := http.NewRequest(http.MethodGet, url, nil) if err != nil { return nil, err }