Commit 67eb0fb
authored
[cleanup][proxy] ProxyConnection should not call super.exceptionCaught (#19990)
### Motivation
While debugging an issue, I noticed that we call `super.exceptionCaught(ctx, cause);` in the `ProxyConnection` class. This leads to the following log line:
> An exceptionCaught() event was fired, and it reached at the tail of the pipeline. It usually means the last handler in the pipeline did not handle the exception. io.netty.channel.unix.Errors$NativeIoException: recvAddress(..) failed: Connection reset by peer
Because we always handle exceptions, there is no need to forward them to the next handler.
### Modifications
* Remove a single method call
### Verifying this change
This is a trivial change. Note that we do not call the super method in any other handler implementations in the project.
### Documentation
- [x] `doc-not-needed` <!-- Your PR changes do not impact docs -->
### Matching PR in forked repository
PR in forked repository: skipping PR for this trivial change1 parent 2dcaf0e commit 67eb0fb
1 file changed
Lines changed: 0 additions & 1 deletion
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
211 | | - | |
212 | 211 | | |
213 | 212 | | |
214 | 213 | | |
| |||
0 commit comments