upstream endpoints load balancer weights (#1830)

This commit is contained in:
wasaga 2021-01-28 09:11:14 -05:00 committed by GitHub
parent 3567183ce5
commit 67f6030e1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
30 changed files with 1190 additions and 778 deletions

View file

@ -456,14 +456,6 @@ func mustParseURL(str string) *url.URL {
return u
}
func mustParseURLs(strs ...string) []*url.URL {
var us []*url.URL
for _, str := range strs {
us = append(us, mustParseURL(str))
}
return us
}
type mockDataBrokerServiceClient struct {
databroker.DataBrokerServiceClient