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
Right now, there are two reasons this doesn't happen:
h11 doesn't look at the next request/response cycle at all until the current one finishes and someone calls start_next_cycle
the state machine actually allows a server to send a spontaneous Response. This is because when acting as a server, we want to be able to send back a 400 response to malformed requests, which from the state machine's point of view is like having no request at all. When acting as a client, though, then this doesn't make much sense.