Skip to content

Commit

Permalink
internal/envoy: Update GZip to valid wellknown name
Browse files Browse the repository at this point in the history
Updates: #2479

Signed-off-by: Steve Sloka <[email protected]>
  • Loading branch information
stevesloka committed Sep 18, 2020
1 parent c5ff6f3 commit 83aed21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/envoy/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ func (b *httpConnectionManagerBuilder) ConnectionShutdownGracePeriod(timeout tim
func (b *httpConnectionManagerBuilder) DefaultFilters() *httpConnectionManagerBuilder {
b.filters = append(b.filters,
&http.HttpFilter{
Name: wellknown.Gzip,
// TODO(#2479) Update once go-control-plane constant is merged (https://github.com/envoyproxy/go-control-plane/pull/354).
Name: "envoy.filters.http.compressor",
},
&http.HttpFilter{
Name: wellknown.GRPCWeb,
Expand Down

0 comments on commit 83aed21

Please sign in to comment.