-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix timeout error handling The main issues addressed here are: 1. When renderMiddleware timesout, it will send down what ever it has left but it fails to close out the body and html. 2. In ClientController there is a race condition between nodeArrival and failArrival. nodeArrival will receive a bunch of nodes since before failArrival is sent the nodes we have left are sent down. If failArrival runs an resolves `retVal` before the nodes can actually render the `_previouslyRender` flag will be set. Once that is set and the elements try to render, because `_previouslyRender` is set at the point `_cleanup` will be called which will wipe away everything on the page. * handle element render failures without failing writeBody lifecycle method * Fix react-server-intergration test failures
- Loading branch information
Showing
2 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters