We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3031cc4 commit 9bc4ebeCopy full SHA for 9bc4ebe
1 file changed
packages/cloudflare/src/api/overrides/tag-cache/d1-next-tag-cache.ts
@@ -106,7 +106,7 @@ export class D1NextModeTagCache implements NextModeTagCache {
106
const isStale = [...result.values()].some((v) => {
107
if (v == null) return false;
108
const { revalidatedAt, stale, expire } = v;
109
- // A tag is stale when both its stale timestamp and its revalidatedAt are newer than the page.
+ // A tag is stale when both its stale and revalidatedAt timestamps are newer than the page.
110
// revalidatedAt > lastModified ensures the revalidation that set this stale window happened
111
// after the page was generated, preventing a stale signal from a previous ISR cycle.
112
const isInStaleWindow =
0 commit comments