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
There is no keepalive support, so performance suffers when making a ton of RPCs (eg. benchmarking). With treq we can pass twisted.web.client.HTTPConnectionPool.
The text was updated successfully, but these errors were encountered:
Using
twisted.web.xmlrpc.Proxy
was helpful at first, but we're running into some limitations.We've had to override
twisted.web.xmlrpc._QueryFactory
to provide a custom marshaller that uses the<i8>
XML-RPC extension.Simple HTTPS verification works in the latest Twisted versions (xmlrpc.Proxy performs no HTTPS certificate verification twisted/twisted#9836), but we still need
TrustedProxy
to 1) backport add that behavior to old Twisted versions and 2) support a custom CA location.There is no keepalive support, so performance suffers when making a ton of RPCs (eg. benchmarking). With treq we can pass
twisted.web.client.HTTPConnectionPool
.The text was updated successfully, but these errors were encountered: