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

Method UnmarshalYAML

modules/overrides/config.go:233–239  ·  view source on GitHub ↗
(unmarshal func(interface{}) error)

Source from the content-addressed store, hash-verified

231})
232
233func (o *Overrides) UnmarshalYAML(unmarshal func(interface{}) error) error {
234 type plain Overrides
235 if err := unmarshal((*plain)(o)); err != nil {
236 return err
237 }
238 return processExtensions(o)
239}
240
241func (o *Overrides) UnmarshalJSON(data []byte) error {
242 type plain Overrides

Callers

nothing calls this directly

Implementers 1

runtimeConfigOverridesManagermodules/overrides/runtime_config_overr

Calls 1

processExtensionsFunction · 0.85

Tested by

no test coverage detected