fix: report correct errors when using the pnpm server#7032
Merged
Conversation
9485b9b to
72a963a
Compare
gluxon
commented
Sep 2, 2023
| export function reportError (logObj: Log, config?: Config) { | ||
| const errorInfo = getErrorInfo(logObj, config) | ||
| let output = formatErrorSummary(errorInfo.title, logObj['err']['code']) | ||
| let output = formatErrorSummary(errorInfo.title, (logObj as LogObjWithPossibleError).err?.code) |
Member
Author
There was a problem hiding this comment.
I would normally add a test when fixing a bug, but in this case the bug happened as a result of bypassing TypeScript compilation checks through the [] indexing syntax. The new LogObjWithPossibleError interface here should make this lookup a bit safer in the future.
Member
Author
|
Here's one case of a user reporting this. #4889 In that issue the cause of the error was fixed, but I think there's still a bug when reporting the error. |
zkochan
reviewed
Sep 2, 2023
72a963a to
4c43163
Compare
zkochan
approved these changes
Sep 2, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Steps to Reproduce
Start the pnpm store server.
Run a command that is expected to error.
In this example, we're attempting to install a version that doesn't exist.
Changes
The actual error is now printed with the fix in this PR.
Explanation
Errors from the pnpm server go through a different reporting code path. It looks like in this case the
errobject is empty for thelogargument.pnpm/cli/default-reporter/src/reporterForServer.ts
Line 24 in ee61ca4