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

1 comment on commit 5c7db06

@vercel
Copy link

@vercel vercel bot commented on 5c7db06 Jun 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx.dev
nx-five.vercel.app

Please sign in to comment.