Skip to content

Commit b616d57

Browse files
committed
fix(task): update limit docs to 100
1 parent 9272790 commit b616d57

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

functions/lib/table-to-ecom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const MAPPED_COLUMNS = [
9292
parser: (row, _, options = {}) => {
9393
const worksheet = options.worksheet || options.sheetResult
9494
const categories = []
95-
95+
9696
row.eachCell((_, columnNumber) => {
9797
if (worksheet) {
9898
const key = worksheet.getColumn(columnNumber).key

functions/lib/tasks.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,8 @@ const handleWorker = async () => {
224224
.where('ready_at', '<=', now)
225225
.orderBy('ready_at').limit(600)
226226

227-
const limitDocs = 50
227+
const limitDocs = 100
228+
228229
const notificationDocs = await query.get()
229230
const storeIds = []
230231
if (!notificationDocs.empty) {

0 commit comments

Comments
 (0)