Skip to content

Commit ba98b29

Browse files
authored
Fixes runLimiter check on #dequeueRuns
This was causing issues in the dev environment with logs being spammed with `[DevSupervisor] dequeueRuns. Run limit reached, trying again later` and making the worker unresponsive and lose connection.
1 parent 64ca9dc commit ba98b29

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/cli-v3/src/dev/devSupervisor.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ class DevSupervisor implements WorkerRuntime {
206206
) {
207207
logger.debug(`[DevSupervisor] dequeueRuns. Run limit reached, trying again later`);
208208
setTimeout(() => this.#dequeueRuns(), this.config.dequeueIntervalWithoutRun);
209+
return;
209210
}
210211

211212
//get relevant versions

0 commit comments

Comments
 (0)