We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f06605a commit 94fb627Copy full SHA for 94fb627
pkg/falcon/extractor.go
@@ -180,7 +180,7 @@ func GetMessages(config *config.Config, ctx context.Context) (results map[string
180
181
step := 100
182
183
- for sliceStart := 0; sliceStart < len(hostResult.Payload.Resources); i += step {
+ for sliceStart := 0; sliceStart < len(hostResult.Payload.Resources); sliceStart += step {
184
sliceEnd := sliceStart + step
185
if sliceEnd > len(hostResult.Payload.Resources) {
186
sliceEnd = len(hostResult.Payload.Resources)
0 commit comments