Skip to content

Instantly share code, notes, and snippets.

@mmattice
Created October 7, 2014 18:47
Show Gist options
  • Save mmattice/53ec257cafd1abe83d85 to your computer and use it in GitHub Desktop.
Save mmattice/53ec257cafd1abe83d85 to your computer and use it in GitHub Desktop.
Non-noisy agent connections
from twisted.web import client
class _HTTP11ClientFactory(client._HTTP11ClientFactory):
noisy = False
class HTTPConnectionPool(client.HTTPConnectionPool):
_factory = _HTTP11ClientFactory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment