Skip to content

Commit 926558a

Browse files
committedAug 5, 2024·
e2e/forwarder: remove not needed FORWARDER_API_ADDRESS env vars
1 parent 0d40fc3 commit 926558a

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed
 

‎e2e/forwarder/service.go

+5-8
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,17 @@ func UpstreamProxyService() *Service {
4343
Name: UpstreamProxyServiceName,
4444
Image: Image,
4545
Environment: map[string]string{
46-
"FORWARDER_API_ADDRESS": ":10000",
47-
"FORWARDER_NAME": UpstreamProxyServiceName,
46+
"FORWARDER_NAME": UpstreamProxyServiceName,
4847
},
4948
}
5049
}
5150

5251
func HttpbinService() *Service {
5352
return &Service{
54-
Name: HttpbinServiceName,
55-
Image: Image,
56-
Command: []string{"test", "httpbin"},
57-
Environment: map[string]string{
58-
"FORWARDER_API_ADDRESS": ":10000",
59-
},
53+
Name: HttpbinServiceName,
54+
Image: Image,
55+
Command: []string{"test", "httpbin"},
56+
Environment: map[string]string{},
6057
}
6158
}
6259

0 commit comments

Comments
 (0)
Please sign in to comment.