-
-
Notifications
You must be signed in to change notification settings - Fork 425
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: concurrent option is not working correctly #950
Conversation
@jay-es very nice catch! Thanks. |
Codecov Report
@@ Coverage Diff @@
## master #950 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 18 18
Lines 611 611
Branches 144 144
=========================================
Hits 611 611 Continue to review full report at Codecov.
|
@jay-es thanks again, merged! |
@iiroj Thank you! |
🎉 This PR is included in version 10.5.4 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Hello.
The value of
--concurrent
CLI option is passed as string like'true'
and'2'
.And tasks run serially when this option is set (even
--concurrent true
).This is because the code to assign concurrency looks like this.
I have fixed this behavior.
Please review this PR, thanks.
before → after.