Remove type argument from waitForDns

The function is going to be changed to handle only A/CNAME records
This commit is contained in:
Girish Ramakrishnan
2018-02-08 14:19:14 -08:00
parent 0927c8161c
commit d31c948d3e
5 changed files with 17 additions and 30 deletions
+1 -1
View File
@@ -341,7 +341,7 @@ function waitForDnsPropagation(app, callback) {
sysinfo.getPublicIp(function (error, ip) {
if (error) return callback(error);
domains.waitForDnsRecord(app.fqdn, app.domain, ip, 'A', { interval: 5000, times: 120 }, callback);
domains.waitForDnsRecord(app.fqdn, app.domain, ip, { interval: 5000, times: 120 }, callback);
});
}