Skip to content

Commit

Permalink
remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjenkins committed Aug 21, 2023
1 parent ce458ca commit 94ee93a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/envoyconfig/listeners.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func (b *Builder) buildMainHTTPConnectionManagerFilterChains(
return nil, err
}
authenticateFilter, err := b.buildAuthenticateHTTPConnectionManagerFilter(
ctx, cfg, authenticateURL.Host)
cfg, authenticateURL.Host)
if err != nil {
return nil, err
}
Expand Down Expand Up @@ -300,7 +300,7 @@ func useSeparateAuthenticateFilterChain(cfg *config.Config) bool {
}

func (b *Builder) buildAuthenticateHTTPConnectionManagerFilter(
ctx context.Context, cfg *config.Config, host string,
cfg *config.Config, host string,
) (*envoy_config_listener_v3.Filter, error) {
mgr, err := b.buildMainHTTPConnectionManagerBase(cfg)
if err != nil {
Expand Down

0 comments on commit 94ee93a

Please sign in to comment.