Skip to content

Commit 39e7e13

Browse files
committed
lint fix
1 parent 89dd68a commit 39e7e13

File tree

1 file changed

+2
-1
lines changed
  • packages/cloudflare/src/api/durable-objects

1 file changed

+2
-1
lines changed

packages/cloudflare/src/api/durable-objects/queue.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@ export class DurableObjectQueueHandler extends DurableObject<CloudflareEnv> {
202202
this.routeInFailedState.delete(msg.MessageDeduplicationId);
203203
return;
204204
}
205-
const nextAlarmMs = Date.now() + Math.pow(2, existingFailedState.retryCount + 1) * this.revalidationRetryInterval;
205+
const nextAlarmMs =
206+
Date.now() + Math.pow(2, existingFailedState.retryCount + 1) * this.revalidationRetryInterval;
206207
updatedFailedState = {
207208
...existingFailedState,
208209
retryCount: existingFailedState.retryCount + 1,

0 commit comments

Comments
 (0)