1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

removed superfluous type field from RecordSet constructor (#33165)

* fixes breaking change in Azure DNS Python SDK 1.2.0
* no apparent functional change (the arg appears to have been superfluous all along)
This commit is contained in:
Matt Davis 2017-11-21 14:39:01 -08:00 committed by GitHub
parent 96b4f8b5c3
commit e8910e4bc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
)