1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

Merge pull request #478 from klarrimore/master

pull request in attempt at fix for undefined method issue mentioned in fog/fog-aws#477
This commit is contained in:
Wesley Beary 2018-09-26 11:59:49 -05:00 committed by GitHub
commit b45ec2e21f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,7 +194,7 @@ module Fog
# change_resource_record_sets("ABCDEFGHIJKLMN", change_batch_options)
#
def change_resource_record_sets(zone_id, change_batch, options = {})
body = AWS.change_resource_record_sets_data(zone_id, change_batch, @version, options)
body = Fog::AWS::DNS.change_resource_record_sets_data(zone_id, change_batch, @version, options)
request({
:body => body,
:idempotent => true,