Looks like aiohttp always sends `Connection: keep-alive` for keepalive connections and `Connection: close` for closing. That's not correct:`keep-alive` should be used only for HTTP 1.0 and `close` for HTTP 1.1 respectively.
Looks like aiohttp always sends
Connection: keep-alivefor keepalive connections andConnection: closefor closing.That's not correct:
keep-aliveshould be used only for HTTP 1.0 andclosefor HTTP 1.1 respectively.