| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Review requested:
|
Sorry, something went wrong.
Codecov Report❌ Patch coverage is 90.00000% with 1 line in your changes missing coverage. Please review.
@@ Coverage Diff @@
## main #63569 +/- ##
==========================================
- Coverage 91.95% 90.33% -1.63%
==========================================
Files 379 732 +353
Lines 166486 236459 +69973
Branches 25452 44534 +19082
==========================================
+ Hits 153099 213610 +60511
- Misses 13094 14548 +1454
- Partials 293 8301 +8008
... and 478 files with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
Reject reads based on writer state so explicit falsy fail reasons do not leave reads pending. Fixes: nodejs#63568 Signed-off-by: Kamat, Trivikram <16024985+trivikr@users.noreply.github.com> Assisted-by: openai:gpt-5.5
There was a problem hiding this comment.
lgtm
Sorry, something went wrong.
Sorry, something went wrong.
Reject reads based on writer state so explicit falsy fail reasons do not leave reads pending. Fixes: nodejs#63568 Signed-off-by: Kamat, Trivikram <16024985+trivikr@users.noreply.github.com> Assisted-by: openai:gpt-5.5 PR-URL: nodejs#63569 Fixes: nodejs#63568 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reject reads based on writer state so explicit falsy fail reasons do not leave reads pending. Fixes: #63568 Signed-off-by: Kamat, Trivikram <16024985+trivikr@users.noreply.github.com> Assisted-by: openai:gpt-5.5 PR-URL: #63569 Backport-PR-URL: #64675 Fixes: #63568 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
| Back | FazBrowse Home | New Git URL |
This fixes stream/iter push writer reads after writer.fail() is called
with an explicit falsy reason.
Reads now use the writer state instead of the truthiness of the stored error,
so reasons like 0 and false reject correctly instead of leaving reads
pending.
Fixes: #63568
Assisted-by: openai:gpt-5.5