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
The server currently uses the HTTP 1.0 protocol where each connection is closed after communicating. This is less efficient and not up to current standards for servers.
Implement HTTP 1.1 by keeping a connection open that browsers can maintain communication on if they are using HTTP 1.1. If a client is using 1.0, keep the 1.0 implementation.
The text was updated successfully, but these errors were encountered:
The server currently uses the HTTP 1.0 protocol where each connection is closed after communicating. This is less efficient and not up to current standards for servers.
Implement HTTP 1.1 by keeping a connection open that browsers can maintain communication on if they are using HTTP 1.1. If a client is using 1.0, keep the 1.0 implementation.
The text was updated successfully, but these errors were encountered: