Eikon Proxy Issue

The following issue occurs when running the Eikon proxy:

1635782359473.png

This issue occurs even with the proxy running and connected to the proper port in the background:

1635782301534.png

Before the proxy functioned very well and never had any issues.

How can we solve this issue?

Best Answer

  • @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

Answers

  • Hi @marketintelligence ,


    May I ask (simply just to verify) if (i) you have Eikon or Workspace running in the background and if yes, (ii) what version of it you are using as well as (iii) which version of the Eikon Data API (EDAPI) you are using?

    I am asking because I have seen something similar in the past for which updating or depreciating the EDAPI library version resolved the issue.

  • This completely solved the issue. Many thanks!