From 0f7d9fe7b297464cc2156c02adaa285db9ba81a6 Mon Sep 17 00:00:00 2001 From: Daniel Rammer Date: Thu, 21 Dec 2023 11:59:22 -0600 Subject: [PATCH] fixing 100 kilobyte number 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 {