fix staticcheck linter warning for deprecated function

go1.18 deprecates `strings.Title()`. However for our use case this is
still fine. The recommended replacement is adding about 400kb binary
size so lets keep using this for now.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger 2022-04-25 18:36:37 +02:00
parent 9784d97bd6
commit 62f4ae98fb
No known key found for this signature in database
GPG key ID: EB145DD938A3CAF2

View file

@ -363,6 +363,11 @@ func (l psReporter) State() string {
state = fmt.Sprintf("Exited (%d) %s ago", l.ExitCode, t)
default:
// Need to capitalize the first letter to match Docker.
// strings.Title is deprecated since go 1.18
// However for our use case it is still fine. The recommended replacement
// is adding about 400kb binary size so lets keep using this for now.
//nolint:staticcheck
state = strings.Title(l.ListContainer.State)
}
return state