Skip to content

Commit

Permalink
fix: adding missing transport parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
WendelHime committed Jul 8, 2024
1 parent ccbc458 commit 533717a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ func (p *Proxy) listenAlgeneva(baseListen func(string) (net.Listener, error)) li
// Currently water doesn't support customized TCP connections and we need to listen and receive requests directly from the WATER listener
func (p *Proxy) listenWATER(addr string) (net.Listener, error) {
ctx := context.Background()
waterListener, err := water.NewWATERListener(ctx, addr, p.WaterWASM)
waterListener, err := water.NewWATERListener(ctx, p.WaterTransport, addr, p.WaterWASM)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 533717a

Please sign in to comment.