diff --git a/src/dns/linode.js b/src/dns/linode.js index 1f35115d3..024183655 100644 --- a/src/dns/linode.js +++ b/src/dns/linode.js @@ -119,9 +119,10 @@ function get(domainObject, location, type, callback) { zoneName = domainObject.zoneName, name = domains.getName(domainObject, location, type) || ''; - getZoneRecords(dnsConfig, zoneName, name, type, function (error, { records }) { + getZoneRecords(dnsConfig, zoneName, name, type, function (error, result) { if (error) return callback(error); + const { records } = result; var tmp = records.map(function (record) { return record.target; }); debug('get: %j', tmp); @@ -143,9 +144,10 @@ function upsert(domainObject, location, type, values, callback) { debug('upsert: %s for zone %s of type %s with values %j', name, zoneName, type, values); - getZoneRecords(dnsConfig, zoneName, name, type, function (error, { zoneId, records }) { + getZoneRecords(dnsConfig, zoneName, name, type, function (error, result) { if (error) return callback(error); + const { zoneId, records } = result; let i = 0, recordIds = []; // used to track available records to update instead of create async.eachSeries(values, function (value, iteratorCallback) { @@ -222,9 +224,10 @@ function del(domainObject, location, type, values, callback) { zoneName = domainObject.zoneName, name = domains.getName(domainObject, location, type) || ''; - getZoneRecords(dnsConfig, zoneName, name, type, function (error, { zoneId, records }) { + getZoneRecords(dnsConfig, zoneName, name, type, function (error, result) { if (error) return callback(error); + const { zoneId, records } = result; if (records.length === 0) return callback(null); var tmp = records.filter(function (record) { return values.some(function (value) { return value === record.target; }); }); @@ -287,7 +290,7 @@ function verifyDnsConfig(domainObject, callback) { if (error || !nameservers) return callback(new BoxError(BoxError.BAD_FIELD, error ? error.message : 'Unable to get nameservers', { field: 'nameservers' })); if (nameservers.map(function (n) { return n.toLowerCase(); }).indexOf('ns1.linode.com') === -1) { - debug('verifyDnsConfig: %j does not contains DO NS', nameservers); + debug('verifyDnsConfig: %j does not contains linode NS', nameservers); return callback(new BoxError(BoxError.BAD_FIELD, 'Domain nameservers are not set to Linode', { field: 'nameservers' })); }