tencentcloud-sdk-nodejs-chdfs 4.0.389 → 4.0.432
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6229 -0
- package/README.md +3 -3
- package/SERVICE_CHANGELOG.md +4213 -159
- package/package.json +1 -1
- package/products.md +99 -97
- package/src/services/chdfs/index.ts +2 -2
- package/tencentcloud/services/chdfs/index.d.ts +4 -4
- package/tencentcloud/services/chdfs/index.js +2 -2
package/README.md
CHANGED
@@ -114,7 +114,7 @@ async function main(){
|
|
114
114
|
|
115
115
|
## 代理
|
116
116
|
|
117
|
-
如果是有代理的环境下,需要设置系统环境变量 `
|
117
|
+
如果是有代理的环境下,需要设置系统环境变量 `http_proxy` ,否则可能无法正常调用,抛出连接超时的异常。
|
118
118
|
|
119
119
|
# 旧版 SDK
|
120
120
|
|
@@ -142,8 +142,8 @@ async function main(){
|
|
142
142
|
# windows powershell
|
143
143
|
$env:NODE_DEBUG='http' ; node app.js
|
144
144
|
```
|
145
|
-
如需要配置代理,请设置环境变量 `
|
145
|
+
如需要配置代理,请设置环境变量 `http_proxy`,例如:
|
146
146
|
```sh
|
147
147
|
# MacOS
|
148
|
-
|
148
|
+
http_proxy=http://代理地址:代理端口 node app.js
|
149
149
|
```
|