Skip to content

Commit 6b3edc3

Browse files
authoredFeb 19, 2024
fix: init deployStore on fs.readFile and not when lambda spawns (#277)
1 parent 9c2f0bb commit 6b3edc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/run/next.cts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ const fetchBeforeNextPatchedIt = globalThis.fetch
1616
export async function getMockedRequestHandlers(...args: Parameters<typeof getRequestHandlers>) {
1717
const tracer = trace.getTracer('Next.js Runtime')
1818
return tracer.startActiveSpan('mocked request handler', async (span) => {
19-
const store = getDeployStore({ fetch: fetchBeforeNextPatchedIt })
2019
const ofs = { ...fs }
2120

2221
const { encodeBlobKey } = await import('../shared/blobkey.js')
@@ -30,6 +29,7 @@ export async function getMockedRequestHandlers(...args: Parameters<typeof getReq
3029
} catch (error) {
3130
// only try to get .html files from the blob store
3231
if (typeof path === 'string' && path.endsWith('.html')) {
32+
const store = getDeployStore({ fetch: fetchBeforeNextPatchedIt })
3333
const relPath = relative(resolve('.next/server/pages'), path)
3434
const file = await store.get(await encodeBlobKey(relPath))
3535
if (file !== null) {

0 commit comments

Comments
 (0)
Please sign in to comment.