We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When the environment variable PARCEL_WORKERS is 0 parcel hangs on the first bundle.
PARCEL_WORKERS
0
Parcel should compile the bundle using the local worker in the worker farm.
Instead Parcel queues all work for remote workers even though none are spawned. This results in a hang.
Ensure the worker farm correctly uses the local worker instead of queuing for remote workers when no workers are spawned.
Working on #1370, while debugging my changes, I ran into this issue.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
🐛 bug report
When the environment variable
PARCEL_WORKERS
is0
parcel hangs on the first bundle.🤔 Expected Behavior
Parcel should compile the bundle using the local worker in the worker farm.
😯 Current Behavior
Instead Parcel queues all work for remote workers even though none are spawned. This results in a hang.
💁 Possible Solution
Ensure the worker farm correctly uses the local worker instead of queuing for remote workers when no workers are spawned.
🔦 Context
Working on #1370, while debugging my changes, I ran into this issue.
🌍 Your Environment
The text was updated successfully, but these errors were encountered: