removed superfluous `type` field from RecordSet constructor (#33167)

* fixes breaking change in Azure DNS Python SDK 1.2.0
* no apparent functional change (the arg appears to have been superfluous all along)
(cherry picked from commit 64f4132571)
pull/33170/head
Matt Davis 8 years ago committed by GitHub
parent 0541c00ef7
commit 832c8e5f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -186,7 +186,8 @@ Ansible Changes By Release
https://github.com/ansible/ansible/pull/32986
* Handle sets and datetime objects in inventory sources fixing tracebacks
https://github.com/ansible/ansible/pull/32990
* Fix for breaking change to Azure Python SDK DNS RecordSet constructor in azure-mgmt-dns==1.2.0
https://github.com/ansible/ansible/pull/33165
<a id="2.4.1"></a>

@ -324,7 +324,6 @@ class AzureRMRecordSet(AzureRMModuleBase):
if self.results['changed']:
if self.state == 'present':
record_set_args = dict(
type=self.record_type,
ttl=self.time_to_live
)

Loading…
Cancel
Save