Skip to content

Commit

Permalink
Trim space
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany committed Sep 17, 2024
1 parent 0eaf1b3 commit 2763ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ee/debug/checkups/coredump_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (c *coredumpCheckup) Run(ctx context.Context, extraWriter io.Writer) error
// At least one coredump exists for at least one binary
c.status = Failing
c.summary += fmt.Sprintf("%s has at least one coredump; ", binaryName)
c.data[binaryName] = string(coredumpListRaw)
c.data[binaryName] = strings.TrimSpace(string(coredumpListRaw))
}
c.summary = strings.TrimSuffix(strings.TrimSpace(c.summary), ";")

Expand Down

0 comments on commit 2763ed4

Please sign in to comment.