-
Notifications
You must be signed in to change notification settings - Fork 147
Closed
Description
I've noticed a strange occurrence. I'm reading raw compressed data from multiple files and then concatenating them:
.map(url => _(request.get(url))
.parallel(8)
.through(decoder())
However, this results sometimes in corrupted data.
While the following works just fine:
.map(url => _(request.get(url))
.parallel(1)
.through(decoder())
I don't have any reproducible example yet. The problem is somewhat intermittent.
Reactions are currently unavailable