The following issue occurs when running the Eikon proxy:
This issue occurs even with the proxy running and connected to the proper port in the background:
Before the proxy functioned very well and never had any issues.
How can we solve this issue?
@marketintelligence
It could be a problem in httpx 0.20.0.
Referring to the changelog of httpx 0.20.0, the send method no longer accepts the timeout parameter. However, it seems that Eikon Data API is still using the timeout parameter.
The client.send() method no longer accepts a timeout=... argument, but the client.build_request() does. This required by the signature change of the Transport API. The request timeout configuration is now stored on the request instance, as request.extensions['timeout'].
Please downgrade the version of httpx to 0.19.0.
pip install httpx==0.19.0