Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
陈曦
sub2api
Commits
760cc7d6
Unverified
Commit
760cc7d6
authored
Apr 09, 2026
by
Wesley Liddick
Committed by
GitHub
Apr 09, 2026
Browse files
Merge pull request #1481 from alfadb/fix/increase-error-log-body-limit
fix(ops): 将错误日志请求体存储限制从 10KB 提升至 256KB
parents
9a72025a
6401dd7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
backend/internal/service/ops_service.go
View file @
760cc7d6
...
@@ -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
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment