Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6c7670b

Browse files
committed
Merge branch 'main' into compress-new
2 parents 28b86d2 + 08b814f commit 6c7670b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/isr/server/src/cache-handlers/filesystem-cache-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ export class FileSystemCacheHandler extends CacheHandler {
4343
}
4444

4545
async add(
46-
html: string | Buffer,
4746
cacheKey: string,
47+
html: string | Buffer,
4848
config?: CacheISRConfig,
4949
): Promise<void> {
5050
return new Promise((resolve, reject) => {

libs/isr/server/src/cache-handlers/in-memory-cache-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export class InMemoryCacheHandler extends CacheHandler {
1616
}
1717

1818
add(
19-
html: string | Buffer,
2019
cacheKey: string,
20+
html: string | Buffer,
2121
config: CacheISRConfig = defaultCacheISRConfig,
2222
): Promise<void> {
2323
return new Promise((resolve) => {

0 commit comments

Comments
 (0)