Skip to content

Commit

Permalink
c7e3f6c merge error
Browse files Browse the repository at this point in the history
Motivation:
Cherry-pick of c7e3f6c went wrong.

Modifications:
- Fix comiple error

Result:
Build completes.
  • Loading branch information
Scottmitch committed Sep 16, 2015
1 parent 481cd47 commit 6daf324
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private boolean upgrade(final ChannelHandlerContext ctx, final FullHttpRequest r
}

// Ensure that all required protocol-specific headers are found in the request.
for (String requiredHeader : requiredHeaders) {
for (CharSequence requiredHeader : requiredHeaders) {
if (!request.headers().contains(requiredHeader)) {
return false;
}
Expand Down

0 comments on commit 6daf324

Please sign in to comment.