Open AgentEnder opened 3 days ago
CI is running/has finished running commands for commit 155844fe25879aca840bd8db51b0bf17a58f59dd. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.
๐ See all runs for this CI Pipeline Execution
Sent with ๐ from NxCloud.
The latest updates on your projects. Learn more about Vercel for Git โ๏ธ
Name | Status | Preview | Updated (UTC) |
---|---|---|---|
nx-dev | โ Ready (Inspect) | Visit Preview | Nov 20, 2024 11:38pm |
Current Behavior
The daemon uses a serial queue to communicate with individual Nx processes. This can slow things down if things inside of a
promise.all
or similar method call the daemon multiple times, as all calls must wait for the prior call to finish before starting.Expected Behavior
The daemon utilizes a transaction based message system, such that it can respond to a message which arrived later if its able to complete quicker
Related Issue(s)
Fixes #