remove subdomains.status

This commit is contained in:
Girish Ramakrishnan
2016-12-14 12:28:31 -08:00
parent d475d9bcbf
commit 3ede9af34b
7 changed files with 0 additions and 133 deletions

View File

@@ -10,7 +10,6 @@ exports = module.exports = {
upsert: upsert,
get: get,
del: del,
getChangeStatus: getChangeStatus,
waitForDns: require('./waitfordns.js')
};
@@ -56,12 +55,3 @@ function del(dnsConfig, zoneName, subdomain, type, values, callback) {
callback(new Error('not implemented'));
}
function getChangeStatus(dnsConfig, changeId, callback) {
assert.strictEqual(typeof dnsConfig, 'object');
assert.strictEqual(typeof changeId, 'string');
assert.strictEqual(typeof callback, 'function');
// Result: current change state as string. Upstream code checks for 'INSYNC'
callback(new Error('not implemented'));
}