Skip to content

Commit

Permalink
e2e/forwarder: remove not needed FORWARDER_API_ADDRESS env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatczuk committed Aug 5, 2024
1 parent 0d40fc3 commit 926558a
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions e2e/forwarder/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,17 @@ func UpstreamProxyService() *Service {
Name: UpstreamProxyServiceName,
Image: Image,
Environment: map[string]string{
"FORWARDER_API_ADDRESS": ":10000",
"FORWARDER_NAME": UpstreamProxyServiceName,
"FORWARDER_NAME": UpstreamProxyServiceName,
},
}
}

func HttpbinService() *Service {
return &Service{
Name: HttpbinServiceName,
Image: Image,
Command: []string{"test", "httpbin"},
Environment: map[string]string{
"FORWARDER_API_ADDRESS": ":10000",
},
Name: HttpbinServiceName,
Image: Image,
Command: []string{"test", "httpbin"},
Environment: map[string]string{},
}
}

Expand Down

0 comments on commit 926558a

Please sign in to comment.