Skip to content

Commit de54081

Browse files
committed
fix: my stupid brain thinking higher number == better
1 parent fbd796b commit de54081

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

twitterv1/connect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ func GetMyActivity(c *fiber.Ctx) error {
228228
}()
229229

230230
// Fetch posts in parallel chunks
231-
postChunks := chunkSlice(postsToLookUp, 10) // Process 10 posts at a time
231+
postChunks := chunkSlice(postsToLookUp, 1) // I may have made this wrong, so that this isn't how many it does in parrellel, this is how many it does in one section, TODO: fix this
232232
for _, chunk := range postChunks {
233233
wg.Add(1)
234234
go func(posts []string) {

0 commit comments

Comments
 (0)