From 082a20cad58f347149e752258b1f16fb2eed65b4 Mon Sep 17 00:00:00 2001 From: Pavel Dvoinos Date: Tue, 30 Nov 2021 16:22:20 +0200 Subject: [PATCH] mistyped quote fix --- collector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector.go b/collector.go index 2b8d492..8bb0368 100644 --- a/collector.go +++ b/collector.go @@ -81,7 +81,7 @@ func (r *githubRunners) setRunnerStatusMetric() error { labels := []string{ *v.Name, fmt.Sprint(*v.ID), - searchForLabel(v.Labels, []string{"small", "medium", "large", "xlarge", "xxlarge}, "n/a"), + searchForLabel(v.Labels, []string{"small", "medium", "large", "xlarge", "xxlarge"}, "n/a"), searchForLabel(v.Labels, []string{"production", "staging", "beta"}, "n/a"), searchForLabel(v.Labels, []string{"self-hosted"}, "n/a"), }