File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ type consulServiceState struct {
35
35
Port int // Port number where its listening
36
36
SessionID string // session id assigned by consul
37
37
stopChan chan struct {} // Channel to stop ttl refresh
38
+ Hostname string // Host name where its running
38
39
}
39
40
40
41
// RegisterService registers a service
@@ -126,6 +127,7 @@ func (cp *ConsulClient) RegisterService(serviceInfo ServiceInfo) error {
126
127
Port : serviceInfo .Port ,
127
128
SessionID : sessionID ,
128
129
stopChan : stopChan ,
130
+ Hostname : serviceInfo .Hostname ,
129
131
}
130
132
131
133
return nil
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ type etcdServiceState struct {
35
35
TTL time.Duration // TTL for the service
36
36
HostAddr string // Host name or IP address where its running
37
37
Port int // Port number where its listening
38
+ Hostname string // Host name where its running
38
39
39
40
// Channel to stop ttl refresh
40
41
stopChan chan bool
@@ -70,6 +71,7 @@ func (ep *EtcdClient) RegisterService(serviceInfo ServiceInfo) error {
70
71
HostAddr : serviceInfo .HostAddr ,
71
72
Port : serviceInfo .Port ,
72
73
stopChan : make (chan bool , 1 ),
74
+ Hostname : serviceInfo .Hostname ,
73
75
}
74
76
75
77
// Run refresh in background
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ type ServiceInfo struct {
56
56
TTL int // TTL for this service
57
57
HostAddr string // Host name or IP address where its running
58
58
Port int // Port number where its listening
59
+ Hostname string // Host name where its running
59
60
}
60
61
61
62
// Watch events
You can’t perform that action at this time.
0 commit comments