You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 23, 2021. It is now read-only.
the esi specification allows to specify a onerror attribute, which controls how the system should behave in case the resource doesn't exist:
If an ESI Processor can fetch neither the src nor the alt, it returns a HTTP status code greater than 400 with an error message, unless the onerror attribute is present. If it is, and onerror="continue" is specified, ESI Processors will delete the include element silently.
so the default behaviour is to respond with an error unless the attribute is onerror="continue" is present.
the current esi in the simulator implementation ignores errors when fetching the include content failed; where as the esi processor in fastly includes the response.body from the 404.
the esi specification allows to specify a
onerrorattribute, which controls how the system should behave in case the resource doesn't exist:so the default behaviour is to respond with an error unless the attribute is
onerror="continue"is present.the current esi in the simulator implementation ignores errors when fetching the include content failed; where as the esi processor in fastly includes the response.body from the 404.