瀏覽代碼

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

tags/1.8.0
xubo 2 月之前
父節點
當前提交
f560116fb2
No account linked to committer's email address
共有 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")

Loading…
取消
儲存