Decrease batch size to reduce chance of timeouts

This commit is contained in:
Matt-Yorkley
2018-08-31 22:52:44 +01:00
parent 4dfbbd60d4
commit d8bbcdc54b

View File

@@ -51,7 +51,7 @@ angular.module("admin.productImport").controller "ImportFormCtrl", ($scope, $htt
$scope.start = () ->
$scope.started = true
total = ams_data.item_count
size = 100
size = 50
$scope.chunks = Math.ceil(total / size)
i = 0