We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20477d commit 6f7bcc5Copy full SHA for 6f7bcc5
1 file changed
internal-packages/run-engine/src/run-queue/index.ts
@@ -1578,6 +1578,11 @@ export class RunQueue {
1578
continue;
1579
}
1580
1581
+ if (messages.length > 0) {
1582
+ // Reset cooloff state on successful dequeue
1583
+ this._queueCooloffStates.delete(queue);
1584
+ }
1585
+
1586
if (messages.length === 0) {
1587
if (cooloffState._tag === "normal") {
1588
const cooloffCountThreshold = Math.max(
0 commit comments