robtimus opened a new pull request #236: URL: https://github.com/apache/httpcomponents-core/pull/236
When `addFilterLast` is called on a `ServerBootstrap`, `AsyncServerBootstrap` or `H2ServerBootstrap`, the given filter is added as last element of the filter chain. That may seem correct, but it causes them to be ignored. The reason is the `Terminal*Filter` that's initially the last element. In all three cases, this does not delegate to the chain. As a result, anything added with `addFilterLast` is currently completely ignored. This change adds the filter as last in the chain of actual filters, just before the `Terminal*Filter` of which it could be said it's not an actual filter. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
