We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f85850 commit 12a3c94Copy full SHA for 12a3c94
http-core/src/main/scala/org/apache/pekko/http/impl/engine/http2/RequestParsing.scala
@@ -193,8 +193,8 @@ private[http2] object RequestParsing {
193
import HttpHeader.ParsingResult
194
HttpHeader.parse(name, value, httpHeaderParser.settings) match {
195
case ParsingResult.Ok(header, errors) if errors.isEmpty => header
196
- case ParsingResult.Ok(_, errors) => throw ParsingException(errors.head)
197
- case ParsingResult.Error(info) => throw ParsingException(info)
+ case ParsingResult.Ok(_, errors) => throw ParsingException(errors.head)
+ case ParsingResult.Error(info) => throw ParsingException(info)
198
}
199
200
0 commit comments