store image proxy urls during migration

This commit is contained in:
keyan 2023-10-01 18:11:23 -05:00
parent b2b38d8924
commit 480a302e00
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,6 @@ if (!imgProxyEnabled) {
const MAX_QUEUE = 1000 const MAX_QUEUE = 1000
async function main () { async function main () {
console.log('starting imgproxy job', Prisma.AnyNull)
const { createImgproxyUrls } = await import('../worker/imgproxy.js') const { createImgproxyUrls } = await import('../worker/imgproxy.js')
let cursor = 1 let cursor = 1
try { try {
@ -61,6 +60,8 @@ async function main () {
} }
console.log('[imgproxy] updating item', id, 'with urls', imgproxyUrls) console.log('[imgproxy] updating item', id, 'with urls', imgproxyUrls)
await prisma.item.update({ where: { id }, data: { imgproxyUrls } })
} }
} }
} catch (err) { } catch (err) {