We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cc6998 commit b286e91Copy full SHA for b286e91
packages/cloudflare/src/api/overrides/incremental-cache/static-assets-incremental-cache.ts
@@ -49,8 +49,12 @@ class StaticAssetsIncrementalCache implements IncrementalCache {
49
}
50
51
52
- async set(): Promise<void> {
53
- error("StaticAssetsIncrementalCache: Failed to set to read-only cache");
+ async set<CacheType extends CacheEntryType = "cache">(
+ key: string,
54
+ _value: CacheValue<CacheType>,
55
+ cacheType?: CacheType
56
+ ): Promise<void> {
57
+ error(`StaticAssetsIncrementalCache: Failed to set to read-only cache key=${key} type=${cacheType}`);
58
59
60
async delete(): Promise<void> {
0 commit comments