-
wiseflow version0.3.9 Expected BehaviorDuring handling of the above exception, another exception occurred: Traceback (most recent call last): Current BehaviorDuring handling of the above exception, another exception occurred: Traceback (most recent call last): Is this reproducible?Yes Inputs Causing the BugOSmacos Python version3.10.9 Error logs & Screenshots (if applicable)No response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
自己解决了。 |
Beta Was this translation helpful? Give feedback.
-
hi @markqiu 这个实践经验很宝贵 |
Beta Was this translation helpful? Give feedback.
自己解决了。
原来是因为配置了系统的代理服务器的原因。httpx 会自动扫描系统的配置,导致访问 localhost 也通过 proxy 进行。
解决方案是设置一个 NO_PROXY 环境变量。
在本地的.env 中加入一行:
NO_PROXY="http://127.0.0.1/, localhost"