mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
fix lint issue
because I got distracted by an unrelated CI error and thought the pull was ok :/ https://github.com/woodpecker-ci/woodpecker/pull/4048#issuecomment-2308988964
This commit is contained in:
parent
37d1ca8bc1
commit
6767b59932
1 changed files with 2 additions and 2 deletions
|
@ -14,8 +14,8 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
// base64 overhead + space for other JSON fields (just to be safe)
|
||||
maxLineLength int = (pipeline.MaxLogLineLength/3)*4 + (64 * 1024)
|
||||
// Add base64 overhead and space for other JSON fields (just to be safe).
|
||||
maxLineLength int = (pipeline.MaxLogLineLength/3)*4 + (64 * 1024) //nolint:mnd
|
||||
)
|
||||
|
||||
type logStore struct {
|
||||
|
|
Loading…
Reference in a new issue