From 700100db10c5b1d72741fb6a2675e193f1797c7d Mon Sep 17 00:00:00 2001 From: Bryce Soghigian Date: Tue, 21 Nov 2023 17:23:16 -0800 Subject: [PATCH] chore: bumping length of the message we store on the nodeclaim --- pkg/controllers/nodeclaim/lifecycle/launch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/controllers/nodeclaim/lifecycle/launch.go b/pkg/controllers/nodeclaim/lifecycle/launch.go index 649db0a790..6838ae7fef 100644 --- a/pkg/controllers/nodeclaim/lifecycle/launch.go +++ b/pkg/controllers/nodeclaim/lifecycle/launch.go @@ -148,8 +148,8 @@ func PopulateNodeClaimDetails(nodeClaim, retrieved *v1beta1.NodeClaim) *v1beta1. } func truncateMessage(msg string) string { - if len(msg) < 300 { + if len(msg) < 1000 { return msg } - return msg[:300] + "..." + return msg[:1000] + "..." }