Skip to content

Commit 332248f

Browse files
authored
fix: list stores from auths up to 48h
1 parent 8dc891b commit 332248f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

functions/lib/integration/check-idle-queues.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ const updateAppData = require('../store-api/update-app-data')
66
const listStoreIds = async () => {
77
const storeIds = []
88
const date = new Date()
9-
date.setHours(date.getHours() - 24)
10-
9+
date.setHours(date.getHours() - 48)
1110
const querySnapshot = await firestore()
1211
.collection('ecomplus_app_auth')
1312
.where('updated_at', '>', firestore.Timestamp.fromDate(date))

0 commit comments

Comments
 (0)