capitalize progress

This commit is contained in:
Girish Ramakrishnan
2023-08-21 14:40:57 +05:30
parent 40884705b4
commit b895cc6aad

View File

@@ -193,7 +193,7 @@ async function waitForLocations(locations, progressCallback) {
for (const location of locations) {
const { subdomain, domain } = location;
progressCallback({ message: `waiting for propagation of: ${fqdn(subdomain, domain)}` });
progressCallback({ message: `Waiting for propagation of ${fqdn(subdomain, domain)}` });
const [error] = await safe(waitForDnsRecord(subdomain, domain, 'A', ipv4, { times: 240 }));
if (error) throw new BoxError(BoxError.DNS_ERROR, `DNS A Record is not synced yet: ${error.message}`, { ipv4, subdomain, domain });