Fix nxos_facts httpapi (#60055)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha 2019-08-05 18:01:29 +05:30 committed by GitHub
parent 8a5bde798a
commit e46237d705
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 7 deletions

View file

@ -212,7 +212,7 @@ def get_resource_connection(module):
capabilities = get_capabilities(module) capabilities = get_capabilities(module)
network_api = capabilities.get('network_api') network_api = capabilities.get('network_api')
if network_api == 'cliconf': if network_api in ('cliconf', 'nxapi', 'eapi'):
module._connection = Connection(module._socket_path) module._connection = Connection(module._socket_path)
elif network_api == 'netconf': elif network_api == 'netconf':
module._connection = NetconfConnection(module._socket_path) module._connection = NetconfConnection(module._socket_path)

View file

@ -25,9 +25,3 @@
with_items: "{{ test_items }}" with_items: "{{ test_items }}"
loop_control: loop_control:
loop_var: test_case_to_run loop_var: test_case_to_run
- name: run test cases (connection=local)
include: "{{ test_case_to_run }} ansible_connection=local connection={{ nxapi }}"
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run