Skip to content

Commit

Permalink
Fix hard-coded boolean in CsvBulkLoader
Browse files Browse the repository at this point in the history
  • Loading branch information
colintucker committed Dec 6, 2016
1 parent 0821310 commit 3fca7b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/CsvBulkLoader.php
Expand Up @@ -70,7 +70,7 @@ protected function processAll($filepath, $preview = false) {
foreach ($files as $file) {
$last = $file;

$next = $this->processChunk($file, false);
$next = $this->processChunk($file, $preview);

if ($result instanceof BulkLoader_Result) {
$result->merge($next);
Expand Down

0 comments on commit 3fca7b3

Please sign in to comment.