Skip to content

Commit

Permalink
chore: bumping length of the message we store on the nodeclaim
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryce-Soghigian committed Nov 22, 2023
1 parent 42fd932 commit 700100d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/controllers/nodeclaim/lifecycle/launch.go
Original file line number Diff line number Diff line change
Expand Up @@ -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] + "..."
}

0 comments on commit 700100d

Please sign in to comment.