Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration Testing Framework: Add retries to Artifacts API call #4345

Closed
ycombinator opened this issue Feb 29, 2024 · 1 comment · Fixed by #4348
Closed

Integration Testing Framework: Add retries to Artifacts API call #4345

ycombinator opened this issue Feb 29, 2024 · 1 comment · Fixed by #4348
Assignees
Labels
Team:Elastic-Agent Label for the Agent team Testing

Comments

@ycombinator
Copy link
Contributor

Currently in the integration testing framework, the ArtifactsAPIClient doesn't retry calls to the Artifacts API.
Speaking with @DaveSys911, he suggested we should add retries to this call, somewhere in this function:

func (aac ArtifactAPIClient) createAndPerformRequest(ctx context.Context, URL string) (*http.Response, error) {
req, err := http.NewRequestWithContext(ctx, http.MethodGet, URL, nil)
if err != nil {
err = fmt.Errorf("composing request: %w", err)
return nil, err
}
resp, err := aac.c.Do(req)
if err != nil {
return nil, fmt.Errorf("executing http request %v: %w", req, err)
}
return resp, nil
}

@pierrehilbert pierrehilbert added the Team:Elastic-Agent Label for the Agent team label Feb 29, 2024
@elasticmachine
Copy link
Contributor

Pinging @elastic/elastic-agent (Team:Elastic-Agent)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team:Elastic-Agent Label for the Agent team Testing
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants