Skip to content
This repository was archived by the owner on Feb 22, 2021. It is now read-only.

Commit a22afbd

Browse files
feat(cwreader): wait after throttling errors for a constant duration (#24)
1 parent efa5926 commit a22afbd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/cwreader.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ type CloudwatchLogsReader struct {
3636
// end time, and returns a reader for any logs that match those parameters.
3737
func NewCloudwatchLogsReader(group string, streamPrefix string, start time.Time, end time.Time) (*CloudwatchLogsReader, error) {
3838
session := session.New()
39-
svc := cloudwatchlogs.New(session)
39+
svc := cloudwatchlogs.New(session, &aws.Config{MaxRetries: aws.Int(10)})
4040

4141
if _, err := getLogGroup(svc, group); err != nil {
4242
return nil, err
@@ -124,6 +124,8 @@ func (c *CloudwatchLogsReader) pumpEvents(ctx context.Context, eventChan chan<-
124124
close(eventChan)
125125
return
126126
}
127+
128+
time.Sleep(100 * time.Millisecond)
127129
}
128130
}
129131

0 commit comments

Comments
 (0)