parent
f9e16d7072
commit
e9b5e14764
2 changed files with 3 additions and 1 deletions
|
@ -138,6 +138,8 @@ Ansible Changes By Release
|
|||
(https://github.com/ansible/ansible/pull/32203)
|
||||
* Fix for validating proxy results on Python3 for modules making http requests:
|
||||
(https://github.com/ansible/ansible/pull/32596)
|
||||
* Fix unreferenced variable in SNS topic module
|
||||
(https://github.com/ansible/ansible/pull/29117)
|
||||
|
||||
|
||||
<a id="2.4.1"></a>
|
||||
|
|
|
@ -280,7 +280,7 @@ class SnsTopicManager(object):
|
|||
for (protocol, endpoint) in desired_subscriptions:
|
||||
if (protocol, endpoint) not in subscriptions_existing_list:
|
||||
self.changed = True
|
||||
self.subscriptions_added.append(sub)
|
||||
self.subscriptions_added.append((protocol, endpoint))
|
||||
if not self.check_mode:
|
||||
self.connection.subscribe(self.arn_topic, protocol, endpoint)
|
||||
|
||||
|
|
Loading…
Reference in a new issue