You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It emits the error event with the message Error: no writecb in Transform class.
The message talks about the internal implementation writecb and doesn't make much sense to the users.
I think it's more informative to give the message like Inappropriate multiple calls of callback of transform implementation.
I saw many gulp users see and are confused by the above error message. 123 etc
The text was updated successfully, but these errors were encountered:
vsemozhetbyt
added
errors
Issues and PRs related to JavaScript errors originated in Node.js core.
stream
Issues and PRs related to the stream subsystem.
labels
Apr 19, 2017
When a transform stream's callback is called more than once,
an error is emitted with a somewhat confusing message. This
commit hopes to improve the quality of the error message.
Fixes: nodejs#12513
PR-URL: nodejs#12520
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: James M Snell <[email protected]>
When a transform stream's callback is called more than once,
an error is emitted with a somewhat confusing message. This
commit hopes to improve the quality of the error message.
Fixes: #12513
PR-URL: #12520
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: James M Snell <[email protected]>
When a transform stream's callback is called more than once,
an error is emitted with a somewhat confusing message. This
commit hopes to improve the quality of the error message.
Fixes: #12513
PR-URL: #12520
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: James M Snell <[email protected]>
When we call the callback of transform implementation multiple times like the below:
It emits the error event with the message
Error: no writecb in Transform class
.The message talks about the internal implementation
writecb
and doesn't make much sense to the users.I think it's more informative to give the message like
Inappropriate multiple calls of callback of transform implementation
.I saw many gulp users see and are confused by the above error message. 1 2 3 etc
The text was updated successfully, but these errors were encountered: