Adds the NodeID field back to the /v1/agent/self Config block.

Fixes #3778
pull/3793/head
James Phillips 7 years ago
parent ebcd1787db
commit 9509aa6c4b
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11

@ -57,12 +57,14 @@ func (s *HTTPServer) AgentSelf(resp http.ResponseWriter, req *http.Request) (int
config := struct {
Datacenter string
NodeName string
NodeID string
Revision string
Server bool
Version string
}{
Datacenter: s.agent.config.Datacenter,
NodeName: s.agent.config.NodeName,
NodeID: string(s.agent.config.NodeID),
Revision: s.agent.config.Revision,
Server: s.agent.config.ServerMode,
Version: s.agent.config.Version,

@ -117,6 +117,7 @@ $ curl \
"Config": {
"Datacenter": "dc1",
"NodeName": "foobar",
"NodeID": "9d754d17-d864-b1d3-e758-f3fe25a9874f",
"Server": true,
"Revision": "deadbeef",
"Version": "1.0.0"

Loading…
Cancel
Save