Skip to content

Commit 616b94a

Browse files
authored
fix: prevent infinite loop cause by global fetch patched by Next.js (#167)
1 parent 5b477db commit 616b94a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/run/handlers/cache.cts

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ function encodeBlobKey(key: string) {
3434
return Buffer.from(key.replace(/^\//, '')).toString('base64')
3535
}
3636

37+
const fetchBeforeNextPatchedIt = globalThis.fetch
38+
3739
export class NetlifyCacheHandler implements CacheHandler {
3840
options: CacheHandlerContext
3941
revalidatedTags: string[]
@@ -42,7 +44,7 @@ export class NetlifyCacheHandler implements CacheHandler {
4244
constructor(options: CacheHandlerContext) {
4345
this.options = options
4446
this.revalidatedTags = options.revalidatedTags
45-
this.blobStore = getDeployStore()
47+
this.blobStore = getDeployStore({ fetch: fetchBeforeNextPatchedIt })
4648
}
4749

4850
async get(...args: Parameters<CacheHandler['get']>): ReturnType<CacheHandler['get']> {

0 commit comments

Comments
 (0)