Skip to content

Commit

Permalink
fix(core): increase interval attempts for daemon server available on … (
Browse files Browse the repository at this point in the history
  • Loading branch information
Roozenboom authored Jun 6, 2023
1 parent 020af32 commit 5c7db06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/daemon/client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ export class DaemonClient {
if (await this.isServerAvailable()) {
clearInterval(id);
resolve(backgroundProcess.pid);
} else if (attempts > 1000) {
} else if (attempts > 6000) {
// daemon fails to start, the process probably exited
// we print the logs and exit the client
reject(
Expand Down

0 comments on commit 5c7db06

Please sign in to comment.