Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MITIGATE] Mitigated issue with failing port retrieval #104

Merged
merged 1 commit into from
Feb 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion zhmc_ansible_modules/zhmc_adapter.py
Original file line number Diff line number Diff line change
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