func checkClosed()

in internal/gitlab/client.go [113:117]


func checkClosed(closer io.Closer) {
	if err := closer.Close(); err != nil {
		log.WithError(err).Warn("failed to close")
	}
}