Skip to content

Commit

Permalink
fixing 100 kilobyte number (#4631)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Rammer <[email protected]>
  • Loading branch information
hamersaw authored Dec 22, 2023
1 parent 2aab954 commit 853ebe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytepropeller/events/event_recorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
)

const MaxErrorMessageLength = 104857600 //100KB
const MaxErrorMessageLength = 102400 //100KB
const truncationIndicator = "... <Message Truncated> ..."

type recordingMetrics struct {
Expand Down

0 comments on commit 853ebe4

Please sign in to comment.