Skip to content

Commit

Permalink
add more retry (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pballandras authored Mar 14, 2023
1 parent 0932fda commit 87b0701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/issue_alerts.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func (s *IssueAlertsService) getIssueAlertFromTaskDetail(ctx context.Context, or
}

var resp *Response
for i := 0; i < 5; i++ {
for i := 0; i < 20; i++ {
// TODO: Read poll interval from context
time.Sleep(5 * time.Second)

Expand Down

0 comments on commit 87b0701

Please sign in to comment.