Skip to content

Commit

Permalink
Do not validate signatures when an integration is manually installed …
Browse files Browse the repository at this point in the history
…in the E2E tests (#31530)
  • Loading branch information
FlorentClarret authored Nov 28, 2024
1 parent a16fd69 commit 4e201c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func installIntegration(t *testing.T, client *TestClient, integration string) {
maxRetries := 6

err := backoff.Retry(func() error {
_, err := client.AgentClient.IntegrationWithError(agentclient.WithArgs([]string{"install", "-r", integration}))
_, err := client.AgentClient.IntegrationWithError(agentclient.WithArgs([]string{"install", "--unsafe-disable-verification", "-r", integration}))
return err
}, backoff.WithMaxRetries(backoff.NewConstantBackOff(interval), uint64(maxRetries)))

Expand Down

0 comments on commit 4e201c0

Please sign in to comment.