Skip to content

Commit 0c25965

Browse files
authored
Merge pull request #770 from Pure-Storage-Ansible/proxy_dict
purefa_proxy dict fix
2 parents 6a21c4f + fd262d0 commit 0c25965

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bugfixes:
2+
- purefa_proxy - Fixed issue with incorrect string comparison

plugins/modules/purefa_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def create_proxy(module, array):
110110
+ ":"
111111
+ str(module.params["port"])
112112
)
113-
if new_proxy != current_proxy["proxy"]:
113+
if new_proxy != current_proxy:
114114
changed = True
115115
if not module.check_mode:
116116
res = array.patch_support(support=SupportPatch(proxy=new_proxy))

0 commit comments

Comments
 (0)