Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvote
Accepted
35 4 3 5

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?

eikoneikon-data-apiconnectionproxy
1635782359473.png (66.1 KiB)
1635782301534.png (23.8 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
78.9k 250 52 74

@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
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

This completely solved the issue. Many thanks!

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.