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
Network requests always seem to require a DNS lookup and a SSL handshake. There are ways to keep a connection alive such that this does not need to be done. I suspect Heroku is doing something wonky with the Connection header. The request headers contain Connection: keep-alive but the response headers contain Connection: close.
I think the received close message is causing this issue.
Network requests always seem to require a DNS lookup and a SSL handshake. There are ways to keep a connection alive such that this does not need to be done. I suspect Heroku is doing something wonky with the
Connectionheader. The request headers containConnection: keep-alivebut the response headers containConnection: close.I think the received
closemessage is causing this issue.