Skip to content

Commit f619e6a

Browse files
committed
Additional fix for BZ 69614
1 parent f579816 commit f619e6a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

java/org/apache/coyote/http2/Stream.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,12 @@ public final void emitHeader(String name, String value) throws HpackException {
450450
setIncremental(p.getIncremental());
451451
} catch (IOException ioe) {
452452
// Not possible with StringReader
453+
} catch (IllegalArgumentException iae) {
454+
// Invalid priority header field values should be ignored
455+
if (log.isTraceEnabled()) {
456+
log.trace(sm.getString("http2Parser.processFramePriorityUpdate.invalid", getConnectionId(),
457+
getIdAsString()), iae);
458+
}
453459
}
454460
break;
455461
}

0 commit comments

Comments
 (0)