diff --git a/endpointmanager/pkg/chplquerier/chplquerier.go b/endpointmanager/pkg/chplquerier/chplquerier.go index 6f00ca526..71ea24536 100644 --- a/endpointmanager/pkg/chplquerier/chplquerier.go +++ b/endpointmanager/pkg/chplquerier/chplquerier.go @@ -47,7 +47,7 @@ func makeCHPLURL(path string, queryArgs map[string]string, pageSize int, pageNum func getJSON(ctx context.Context, client *http.Client, chplURL *url.URL, userAgent string) ([]byte, error) { // request ceritified products list // Adds a short delay between request - time.Sleep(time.Duration(500 * time.Millisecond)) + time.Sleep(time.Duration(1200 * time.Millisecond)) req, err := http.NewRequest("GET", chplURL.String(), nil) if err != nil { return nil, errors.Wrap(err, "creating http request failed")