We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b477db commit 616b94aCopy full SHA for 616b94a
src/run/handlers/cache.cts
@@ -34,6 +34,8 @@ function encodeBlobKey(key: string) {
34
return Buffer.from(key.replace(/^\//, '')).toString('base64')
35
}
36
37
+const fetchBeforeNextPatchedIt = globalThis.fetch
38
+
39
export class NetlifyCacheHandler implements CacheHandler {
40
options: CacheHandlerContext
41
revalidatedTags: string[]
@@ -42,7 +44,7 @@ export class NetlifyCacheHandler implements CacheHandler {
42
44
constructor(options: CacheHandlerContext) {
43
45
this.options = options
46
this.revalidatedTags = options.revalidatedTags
- this.blobStore = getDeployStore()
47
+ this.blobStore = getDeployStore({ fetch: fetchBeforeNextPatchedIt })
48
49
50
async get(...args: Parameters<CacheHandler['get']>): ReturnType<CacheHandler['get']> {
0 commit comments