Skip to content

Commit

Permalink
Merge 24a1e9b into 79d84d0
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-maier committed Jan 26, 2019
2 parents 79d84d0 + 24a1e9b commit 1940c23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zhmc_ansible_modules/zhmc_adapter.py
Expand Up @@ -516,7 +516,9 @@ def ensure_set(params, check_mode):
ports = adapter.ports.list()
result_ports = list()
for port in ports:
port.pull_full_properties()
# TODO: Disabling the following line mitigates the recent issue
# with HTTP error 404,4 when retrieving port properties.
# port.pull_full_properties()
result_ports.append(port.properties)
result['ports'] = result_ports

Expand Down

0 comments on commit 1940c23

Please sign in to comment.