mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-28 18:06:34 +02:00
remove unused parameter
This commit is contained in:
parent
ce458caab7
commit
94ee93a833
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
}
|
||||
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue