16561: Replace ListenAddr with per-internal-url ListenURL.
[arvados.git] / sdk / go / arvados / config.go
index ad663b23ef0cc8e1c83a994c2646b3df6116833a..c90551a6109af9dc9afbdd33bed9c78f5f7bc5ed 100644 (file)
@@ -366,9 +366,8 @@ type Services struct {
 }
 
 type Service struct {
-       ListenAddress string
-       InternalURLs  map[URL]ServiceInstance
-       ExternalURL   URL
+       InternalURLs map[URL]ServiceInstance
+       ExternalURL  URL
 }
 
 type TestUser struct {
@@ -402,6 +401,7 @@ func (su URL) String() string {
 }
 
 type ServiceInstance struct {
+       ListenURL  URL
        Rendezvous string `json:",omitempty"`
 }