Skip to content

Commit 49945ac

Browse files
authored
do not trigger a retry on thrown errors in before plugins (#682)
1 parent c2949d4 commit 49945ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/node/src/app/analytics-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ type NodeEmitterEvents = CoreEmitterContract<Context> & {
4848

4949
class NodePriorityQueue extends PriorityQueue<Context> {
5050
constructor() {
51-
super(3, [])
51+
super(1, [])
5252
}
5353
// do not use an internal "seen" map
5454
getAttempts(ctx: Context): number {

0 commit comments

Comments
 (0)