https://bz.apache.org/bugzilla/show_bug.cgi?id=69740
--- Comment #5 from Ruediger Pluem <[email protected]> --- Can you please try if the below patch avoids the transformation of 10x codes to 200 status codes? Index: modules/http2/h2_proxy_session.c =================================================================== --- modules/http2/h2_proxy_session.c (revision 1927805) +++ modules/http2/h2_proxy_session.c (working copy) @@ -298,9 +298,11 @@ * parts. without this, unknown codes are converted to * 500... */ r->status_line = "103 Early Hints"; + forward = 1; break; default: r->status_line = ap_get_status_line(r->status); + forward = 1; break; } ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(03487) The transformation of status codes 418 and 425 is not fixed by the above. This would happen through backporting r1670594 and r1842007. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
