fix(reporting): revert throttle

This commit is contained in:
Zoltan Kochan
2018-01-30 01:21:11 +02:00
parent 18d5997313
commit e2b46cf7b2

View File

@@ -8,14 +8,16 @@ export default (reporterType: ReporterType, cmd: string) => {
switch (reporterType) {
case 'default':
defaultReporter(streamParser, {
cmd,
appendOnly: false,
cmd,
throttleProgress: 0,
})
return
case 'append-only':
defaultReporter(streamParser, {
cmd,
appendOnly: true,
cmd,
throttleProgress: 0,
})
return
case 'ndjson':