This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new bd9eaeba10 Additional fix for BZ 69614 bd9eaeba10 is described below commit bd9eaeba1022e3af220057c689cc1db7609516d4 Author: Mark Thomas <ma...@apache.org> AuthorDate: Wed Mar 19 03:21:50 2025 +0000 Additional fix for BZ 69614 --- java/org/apache/coyote/http2/Stream.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/java/org/apache/coyote/http2/Stream.java b/java/org/apache/coyote/http2/Stream.java index eeb66cc3e0..42aab3fedf 100644 --- a/java/org/apache/coyote/http2/Stream.java +++ b/java/org/apache/coyote/http2/Stream.java @@ -451,6 +451,12 @@ class Stream extends AbstractNonZeroStream implements HeaderEmitter { setIncremental(p.getIncremental()); } catch (IOException ioe) { // Not possible with StringReader + } catch (IllegalArgumentException iae) { + // Invalid priority header field values should be ignored + if (log.isTraceEnabled()) { + log.trace(sm.getString("http2Parser.processFramePriorityUpdate.invalid", getConnectionId(), + getIdAsString()), iae); + } } break; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org