atc0005 / go-nagios

Shared Golang package for Nagios plugins
MIT License
8 stars 3 forks source link

Use length check for perfdata instead of nil check #105

Closed atc0005 closed 2 years ago

atc0005 commented 2 years ago

This change accounts for the potential to receive an empty slice in addition to a nil slice (as we were checking for prior to this change).

fixes GH-104