update doc

This commit is contained in:
bwcx_jzy 2022-05-12 09:55:09 +08:00
parent fcdfc885b7
commit 240e1903b4
No known key found for this signature in database
GPG Key ID: 5E48E9372088B9E5
3 changed files with 23 additions and 4 deletions

View File

@ -28,6 +28,26 @@
> 5. 备份文件保留规则为,只保留有差异的文件
> 6. 同时支持配置仅备份指定文件后缀的文件(详情查看配置文件说明)
### 注意:⚠️
本版本调整了上传文件大小配置参数位置,在插件端升级后可能出现上传文件失败。
可能提示如下:
- 节点上传失败,请优先检查限制上传大小配置是否合理
- 上传文件太大了,请重新选择一个较小的文件上传吧
出现如上提示信息需要对插件端或者服务端进行配置合理对上传文件大小限制。
配置方式:在对应端的 `extConfig.yml` 配置文件中配置如下代码
```yaml
spring:
servlet:
multipart:
# 上传文件大小限制
max-request-size: 2GB
max-file-size: 1GB
```
------
# 2.8.18 (2022-04-12)

View File

@ -231,6 +231,9 @@ public class NodeForward {
if (cause instanceof java.net.SocketTimeoutException) {
return new AgentException(nodeModel.getName() + "节点网络连接超时,请优先检查插件端运行状态再检查节点超时时间配置是否合理,上传文件超时时间配置是否合理。" + message);
}
if (cause instanceof IOException && StrUtil.containsIgnoreCase(message, "Error writing to server")) {
return new AgentException(nodeModel.getName() + "节点上传失败,请优先检查限制上传大小配置是否合理。" + message);
}
}
return new AgentException(nodeModel.getName() + "节点异常:" + message);
}

View File

@ -11,10 +11,6 @@ spring:
console:
# 是否开启 web 访问数据库url: http://${ip}:${port}/h2-console
enabled: true
servlet:
multipart:
max-request-size: 2GB
max-file-size: 1GB
#
jpom:
# subTitle: "测试"