From 853ebe4c32773b7c8815cd3c04290a6fd9caeb58 Mon Sep 17 00:00:00 2001 From: Dan Rammer Date: Fri, 22 Dec 2023 08:50:40 -0600 Subject: [PATCH] fixing 100 kilobyte number (#4631) Signed-off-by: Daniel Rammer --- flytepropeller/events/event_recorder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytepropeller/events/event_recorder.go b/flytepropeller/events/event_recorder.go index 8c12d0d501..310797f081 100644 --- a/flytepropeller/events/event_recorder.go +++ b/flytepropeller/events/event_recorder.go @@ -14,7 +14,7 @@ import ( "github.com/flyteorg/flyte/flytestdlib/promutils/labeled" ) -const MaxErrorMessageLength = 104857600 //100KB +const MaxErrorMessageLength = 102400 //100KB const truncationIndicator = "... ..." type recordingMetrics struct {