Uh oh!
There was an error while loading. Please reload this page.
stream: improving error msg for stream - #8801
Conversation
Trott
commented
Sep 27, 2016
I think we're still in a condition where (unfortunately) changing an error message means the change is semver major. (/cc @jasnell in case I'm wrong) Labeling Change looks good to me, although I would probably be inclined to omit the word |
I don't care too much about "method" being there or not, but I'm happy with this change 👍 (and agree it's semver-major) |
|
lpinca
commented
Sep 27, 2016
+1 for using consistent error messages. It's semver major so changing |
I just remove method from |
There was a problem hiding this comment.
could you please add a newline at the end here?
There was a problem hiding this comment.
Do we actually want to add that data to .gitignore? If I'm not wrong there is an ongoing discussion in another PR for .idea and another open PR to whitelist stuff instead of blacklisting.
I think .idea, .vscode and the others should be in the user global gitignore not here.
There was a problem hiding this comment.
I found the PR: #6963
... I think is just better to add this kind of common files to .gitignore that asking people to add this to the global ignore. Just because this way we don't need to mention again something about this topic and really this don't hurt anyone
jasnell
commented
Sep 27, 2016
LGTM with nits addressed and green CI. |
cjihrig
left a comment
There was a problem hiding this comment.
LGTM without the .gitignore changes.
There was a problem hiding this comment.
These should be done elsewhere.
italoacasas
commented
Sep 27, 2016
Done |
lpinca
commented
Sep 27, 2016
LGTM |
imyller
commented
Sep 29, 2016
imyller
commented
Sep 29, 2016
I'll start landing this:
|
Improve message when tranform._transform() method is not implemented Improve error message when Readable._read() is not implemented Remove extra word in err msg when Writable._write() when not implemented Remove extra word in err msg when Transform._transform() when not implemented PR-URL: #8801 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
imyller
commented
Sep 29, 2016
Landed in 560a589 Thank you for your effort and contribution, @italoacasas |
jasnell
commented
Oct 10, 2016
@nodejs/ctc ... any objections to this landing in v7.x? |
Improve message when tranform._transform() method is not implemented Improve error message when Readable._read() is not implemented Remove extra word in err msg when Writable._write() when not implemented Remove extra word in err msg when Transform._transform() when not implemented PR-URL: #8801 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
Checklist
make -j8 test(UNIX), orvcbuild test nosign(Windows) passesAffected core subsystem(s)
Description of change
Transform._transform()is not implementReadable._read()is not implementWritable._write()is not implemented