mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #46243 from racker-markh/fix-openstack-private-network-issue
Don't ignore 'private_ips' unnecessarily
This commit is contained in:
commit
53067cca43
1 changed files with 1 additions and 1 deletions
|
@ -700,7 +700,7 @@ def _query_node_data(vm_, data, floating, conn):
|
|||
if not result and ssh_interface(vm_) == 'private_ips':
|
||||
for private_ip in private:
|
||||
ignore_ip = ignore_cidr(vm_, private_ip)
|
||||
if private_ip not in data.private_ips and not ignore_ip:
|
||||
if not ignore_ip:
|
||||
result.append(private_ip)
|
||||
|
||||
if result:
|
||||
|
|
Loading…
Add table
Reference in a new issue