我在azure databricks中设置了秘密作用域,为此我安装并配置了Databricks-CLI。我可以配置databricks令牌。
但是,每当我在Databricks CLI上执行任何命令时,我都会收到以下错误:
Error: ValueError: Timeout value connect was Timeout(connect=None, read=None, total=None), but it must be an int or float.这与防火墙或网络有关吗?

发布于 2019-11-01 05:49:38
不幸的是,我的终端没有移植代理。因此在连接到CLI之前必须导出http和https代理。这解决了问题。
export http_proxy=http://username:password@proxyhost:port/
export https_proxy=https://username:password@proxyhost:port/
export ftp_proxy=http://username:password@proxyhost:port/https://askubuntu.com/questions/583797/how-to-set-a-proxy-for-terminal/584183#584183
https://stackoverflow.com/questions/58608993
复制相似问题