Move timeout for markdown blobs into `OtherMarkup`
What does this MR do and why?
Feature flag: :markup_rendering_timeout
We know that ruby's Timeout
is a little unsafe. Rather than wrapping then entire Banzai pipeline in a Timeout call, we've started to target the specific Banzai filters that are having a problem. This way most of the pipeline can run and still produce usable results for the customer, and minimize and instabilities using Timeout.
We initially did this for the SyntaxHightlightFilter
in !102819 (merged)
This MR moves the timeout that wrapped the entire blob markdown pipeline into OtherMarkup
, so that any specific markup processor can't become a problem.
How to set up and validate locally
Numbered steps to set up and validate the change are strongly suggested.
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
-
I have evaluated the MR acceptance checklist for this MR.
Related to #383442 (closed)