-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
repl: fixup error message #32474
repl: fixup error message #32474
Conversation
Use "cmd.action" instead of just "action" for ERR_INVALID_ARG_TYPE Signed-off-by: James M Snell <jasnell@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw many error messages on codes, for example
Lines 624 to 625 in afe3530
validateInt32(options.retryDelay, 'retryDelay', 0); | |
validateUint32(options.maxRetries, 'maxRetries'); |
node/lib/internal/http2/core.js
Line 2856 in 66310c2
validateUint32(options.maxSessionInvalidFrames, 'maxSessionInvalidFrames'); |
should we fix them at one time?
BTW, is there any solution prevents more error messages for the future?
Let's just tackle them incrementally. If nothing else it makes a good first contribution for new comers. They aren't critical changes so no need to do them all at once. |
Use "cmd.action" instead of just "action" for ERR_INVALID_ARG_TYPE Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #32474 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Landed in a057871 |
Use "cmd.action" instead of just "action" for ERR_INVALID_ARG_TYPE Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #32474 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Use "cmd.action" instead of just "action" for ERR_INVALID_ARG_TYPE Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: #32474 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Use "cmd.action" instead of just "action" for ERR_INVALID_ARG_TYPE
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes