-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(core): increase interval attempts for daemon server available on … #16813
fix(core): increase interval attempts for daemon server available on … #16813
Conversation
…start For larger workspaces the start up of the daemon server can take some take due to the initialisation of the hasher. By increasing the attempts the client will poll longer for the server to connect closed nrwl#16809
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
…mon-server-available-attempts
@AgentEnder can we get this merged? I'm seeing the issue in the docker build for a large code base, and how does this affect lerna? will it publish another lerna version? (I'm not using nx directly) |
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
…start
For larger workspaces the start-up of the daemon server can take some take due to the initialization of the hasher.
By increasing the attempts the client will poll longer for the server to connect
closed #16809
Current Behavior
The daemon client waits 10 seconds for the daemon server to be available. This isn't enough for workspaces that contain a lot of files because the server also initialized the hasher on start-up.
Expected Behavior
By increasing the attempts to 6000 the client will wait for a minute, which gives the server more time to start up also in large workspaces
Related Issue(s)
Fixes #16809