Skip to content

Commit

Permalink
Merge pull request #1705 from Netflix/alex/originResponseReceiving
Browse files Browse the repository at this point in the history
Make channelReadInternal protected to allow for override
  • Loading branch information
AlexanderEllis authored Nov 23, 2023
2 parents 02de4fe + 0977d09 commit 4d3a6fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public final void channelRead(final ChannelHandlerContext ctx, Object msg) throw
}
}

private void channelReadInternal(final ChannelHandlerContext ctx, Object msg) throws Exception {
protected void channelReadInternal(final ChannelHandlerContext ctx, Object msg) throws Exception {
if (msg instanceof HttpResponse) {
if (edgeProxy != null) {
edgeProxy.responseFromOrigin((HttpResponse) msg);
Expand Down

0 comments on commit 4d3a6fd

Please sign in to comment.