MCPcopy Create free account
hub / github.com/zalando/skipper / appendParams

Function appendParams

proxy/context.go:127–137  ·  view source on GitHub ↗

this is required during looping to preserve the original set of params in the outer routes

(to, from map[string]string)

Source from the content-addressed store, hash-verified

125// this is required during looping to preserve the original set of
126// params in the outer routes
127func appendParams(to, from map[string]string) map[string]string {
128 if to == nil {
129 to = make(map[string]string)
130 }
131
132 for k, v := range from {
133 to[k] = v
134 }
135
136 return to
137}
138
139func newContext(
140 w flushedResponseWriter,

Callers 2

applyRouteMethod · 0.85
cloneMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…