mirror of https://github.com/status-im/consul.git
Merge pull request #3793 from hashicorp/node-id
Adds the NodeID field back to the /v1/agent/self Config block.
This commit is contained in:
commit
860fbc3902
|
@ -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…
Reference in New Issue