File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/cloudflare/src/api/durable-objects Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ export class DurableObjectQueueHandler extends DurableObject<CloudflareEnv> {
3232 service : NonNullable < CloudflareEnv [ "NEXT_CACHE_REVALIDATION_WORKER" ] > ;
3333
3434 // Configurable params
35- maxRevalidations = DEFAULT_MAX_REVALIDATION_BY_DURABLE_OBJECT ;
36- revalidationTimeout = DEFAULT_REVALIDATION_TIMEOUT_MS ;
37- revalidationRetryInterval = DEFAULT_REVALIDATION_RETRY_INTERVAL_MS ;
38- maxRevalidationAttempts = DEFAULT_MAX_REVALIDATION_ATTEMPTS ;
35+ readonly maxRevalidations : number ;
36+ readonly revalidationTimeout : number ;
37+ readonly revalidationRetryInterval : number ;
38+ readonly maxRevalidationAttempts : number ;
3939
4040 constructor ( ctx : DurableObjectState , env : CloudflareEnv ) {
4141 super ( ctx , env ) ;
You can’t perform that action at this time.
0 commit comments