Skip to content

Commit 94fb627

Browse files
committed
fix: do not skip one host during fetch
1 parent f06605a commit 94fb627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/falcon/extractor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func GetMessages(config *config.Config, ctx context.Context) (results map[string
180180

181181
step := 100
182182

183-
for sliceStart := 0; sliceStart < len(hostResult.Payload.Resources); i += step {
183+
for sliceStart := 0; sliceStart < len(hostResult.Payload.Resources); sliceStart += step {
184184
sliceEnd := sliceStart + step
185185
if sliceEnd > len(hostResult.Payload.Resources) {
186186
sliceEnd = len(hostResult.Payload.Resources)

0 commit comments

Comments
 (0)