From 2f141cd6e0852b41cf7b40466e73f3be6e939ce8 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 15 Sep 2015 18:56:11 -0700 Subject: [PATCH] Make the times absurdly high but that is how long in takes --- src/apptask.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apptask.js b/src/apptask.js index 490fec1c1..5a48eecda 100644 --- a/src/apptask.js +++ b/src/apptask.js @@ -429,7 +429,7 @@ function registerSubdomain(app, callback) { // need to register it so that we have a dnsRecordId to wait for it to complete var record = { subdomain: app.location, type: 'A', value: sysinfo.getIp() }; - async.retry({ times: 30, interval: 5000 }, function (retryCallback) { + async.retry({ times: 200, interval: 5000 }, function (retryCallback) { debugApp(app, 'Registering subdomain location [%s]', app.location); subdomains.add(record, function (error, changeId) {