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 bb5482f commit 8bcedaaCopy full SHA for 8bcedaa
lib/actions/read.js
@@ -118,7 +118,7 @@ async function readCSV(msg, cfg) {
118
return
119
}
120
121
- if (emitBehavior === 'fetchAll') {
+ if (emitBehavior === 'fetchAll' || cfg.emitAll === true || cfg.emitAll === 'true') {
122
await this.emit('data', messages.newMessageWithBody({ result }))
123
} else if (emitBehavior === 'emitBatch') {
124
const chunks = sliceIntoChunks(result, body.batchSize);
0 commit comments