From f70ccdb4d299542cdabfbae6eeef11db996006eb Mon Sep 17 00:00:00 2001 From: Chris Grieger Date: Wed, 4 Mar 2015 10:29:57 +0100 Subject: [PATCH] Add 'ServiceAddress' field to 'CatalogService's truct --- api/catalog.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/api/catalog.go b/api/catalog.go index fee1695677..cf64bd9091 100644 --- a/api/catalog.go +++ b/api/catalog.go @@ -6,12 +6,13 @@ type Node struct { } type CatalogService struct { - Node string - Address string - ServiceID string - ServiceName string - ServiceTags []string - ServicePort int + Node string + Address string + ServiceID string + ServiceName string + ServiceAddress string + ServiceTags []string + ServicePort int } type CatalogNode struct {