fix consul inventory issue (missing method param)
This commit is contained in:
parent
a00056723f
commit
290c74d4f4
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ class ConsulInventory(object):
|
||||||
'''loads the data for a sinle node adding it to various groups based on
|
'''loads the data for a sinle node adding it to various groups based on
|
||||||
metadata retrieved from the kv store and service availablity'''
|
metadata retrieved from the kv store and service availablity'''
|
||||||
|
|
||||||
index, node_data = self.consul_api.catalog.node(node, datacenter)
|
index, node_data = self.consul_api.catalog.node(node, dc=datacenter)
|
||||||
node = node_data['Node']
|
node = node_data['Node']
|
||||||
self.add_node_to_map(self.nodes, 'all', node)
|
self.add_node_to_map(self.nodes, 'all', node)
|
||||||
self.add_metadata(node_data, "consul_datacenter", datacenter)
|
self.add_metadata(node_data, "consul_datacenter", datacenter)
|
||||||
|
|
Loading…
Reference in a new issue