Skip to content

Commit 7a80a48

Browse files
committed
lint fix
1 parent 68c2a33 commit 7a80a48

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • packages/cloudflare/src/api/durable-objects

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)