Asynchronous code using proxy error #3437
Answered
by
karpetrosyan
JoeanAmier
asked this question in
Q&A
-
This synchronization code can be executed normally.
But after changing to asynchronous code, an error will be reported.
The error message is as follows:
If I remove the proxy settings for asynchronous code, the code can run normally. It seems that the error is caused by the proxy and not by the proxy itself. |
Beta Was this translation helpful? Give feedback.
Answered by
karpetrosyan
Dec 2, 2024
Replies: 1 comment
-
You changed your sync classes to async but forgot about transports. They also have an asynchronous alternative. HTTPTransport becomes AsyncHTTPTransport. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JoeanAmier
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You changed your sync classes to async but forgot about transports. They also have an asynchronous alternative. HTTPTransport becomes AsyncHTTPTransport.