Do not set err to unwrapped connectErr in error interceptor #3530
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.
This PR removes setting
err = connectErr.Unwrap()
from ourerror interceptor after the
connectErr
checks. The reason for thisis that this could create some lossiness with
err
.For example, when using
thread.ParallelizeWithCancelOnFailure
,the errors are appended together with
errors.Join
:buf/private/pkg/thread/thread.go
Line 128 in 7321103
When we call
errors.As(err, connectErr)
in the error interceptor, this matchesthe first error in the error tree, in this case the context cancellation, and sets that
as the underlying error. So, when
connectErr.Unwrap()
is called, only the contextcancellation error is returned, and the rest of
err
is lost.