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:
6543 2024-08-25 23:06:02 +02:00
parent 37d1ca8bc1
commit 6767b59932

View file

@ -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 {