MCPcopy
hub / github.com/grafana/tempo / headersEqual

Function headersEqual

modules/generator/storage/instance.go:188–200  ·  view source on GitHub ↗
(a, b map[string]string)

Source from the content-addressed store, hash-verified

186}
187
188func headersEqual(a, b map[string]string) bool {
189 if len(a) != len(b) {
190 return false
191 }
192
193 for k, v := range a {
194 if b[k] != v {
195 return false
196 }
197 }
198
199 return true
200}
201
202type noopScrapeManager struct{}
203

Callers 1

watchOverridesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected