Skip to content

Debugging Keep Alives - Why is HttpToolsProtocol.connection_lost always called after each request? #2131

Closed Answered by chiragjn
chiragjn asked this question in Potential Issue
Discussion options

You must be logged in to vote

Nevermind,
I tried requests.Session and keep alive behaves as expected and server logs also don't have immediate connection_lost.

In [10]: import logging
    ...: import requests
    ...: import time
    ...:
    ...: logging.basicConfig(level=logging.DEBUG)
    ...:
    ...: def test1(duration):
    ...:     s = requests.Session()
    ...:     s.post("http://0.0.0.0:8081/hit")
    ...:     time.sleep(duration)
    ...:     s.post("http://0.0.0.0:8081/hit")
    ...:

In [11]: test1(3)
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): 0.0.0.0:8081
DEBUG:urllib3.connectionpool:http://0.0.0.0:8081 "POST /hit HTTP/1.1" 200 4
DEBUG:urllib3.connectionpool:http://0.0.0.0:8081 "POST …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Kludex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant