浏览代码

fix: 504 Gateway Time-out error on /console/api/version endpoint (#23961)

tags/1.8.0
xubo 2 个月前
父节点
当前提交
f560116fb2
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      api/controllers/console/version.py

+ 1
- 1
api/controllers/console/version.py 查看文件

@@ -32,7 +32,7 @@ class VersionApi(Resource):
return result

try:
response = requests.get(check_update_url, {"current_version": args.get("current_version")})
response = requests.get(check_update_url, {"current_version": args.get("current_version")}, timeout=(3, 10))
except Exception as error:
logging.warning("Check update version error: %s.", str(error))
result["version"] = args.get("current_version")

正在加载...
取消
保存