Closed davnicwil closed 5 years ago
This PR removes the API changes introduced in v1.0.4 for frontloadServerRender which injected a clean context for promise queues for each render.
frontloadServerRender
With this change, this is managed automatically without the user having to do anything using the node async_hooks API.
async_hooks
This means the frontloadServerRender API can be reverted back to how it was - there's now no need to manually plug in the extra context argument.
context
This PR removes the API changes introduced in v1.0.4 for
frontloadServerRender
which injected a clean context for promise queues for each render.With this change, this is managed automatically without the user having to do anything using the node
async_hooks
API.This means the
frontloadServerRender
API can be reverted back to how it was - there's now no need to manually plug in the extracontext
argument.