"frontend/git@web.lueluesay.top:chenxi/sub2api.git" did not exist on "63d1860dc0063df3da020d0c638288af469ebb65"
Unverified Commit 760cc7d6 authored by Wesley Liddick's avatar Wesley Liddick Committed by GitHub
Browse files

Merge pull request #1481 from alfadb/fix/increase-error-log-body-limit

fix(ops): 将错误日志请求体存储限制从 10KB 提升至 256KB
parents 9a72025a 6401dd7c
...@@ -16,7 +16,7 @@ import ( ...@@ -16,7 +16,7 @@ import (
var ErrOpsDisabled = infraerrors.NotFound("OPS_DISABLED", "Ops monitoring is disabled") var ErrOpsDisabled = infraerrors.NotFound("OPS_DISABLED", "Ops monitoring is disabled")
const ( const (
opsMaxStoredRequestBodyBytes = 10 * 1024 opsMaxStoredRequestBodyBytes = 256 * 1024
opsMaxStoredErrorBodyBytes = 20 * 1024 opsMaxStoredErrorBodyBytes = 20 * 1024
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment