Skip to content

Commit

Permalink
convert to snake case
Browse files Browse the repository at this point in the history
Signed-off-by: Willem Veerman <6502426+willemveerman@users.noreply.github.com>
  • Loading branch information
willemveerman committed Apr 29, 2024
1 parent e7714f5 commit 14154cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/golang/filters/http/source/go/pkg/http/type.go
Expand Up @@ -158,9 +158,9 @@ func (h *requestOrResponseHeaderMapImpl) RangeWithCopy(f func(key, value string)
func (h *requestOrResponseHeaderMapImpl) GetAllHeaders() map[string][]string {
h.mutex.Lock()
h.initHeaders()
copiedHeaders := h.headers
copied_headers := h.headers
h.mutex.Unlock()
return copiedHeaders
return copied_headers
}

// api.RequestHeaderMap
Expand Down

0 comments on commit 14154cb

Please sign in to comment.