You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
term.Warnf("The DNS configuration for %v has been successfully verified. However, your local environment may still be using cached data, so it could take several minutes for the DNS changes to propagate on your system.", domain)
235
+
returnnil
236
+
}
237
+
iflocallyVerified {
238
+
returnnil
239
+
}
240
+
}
241
+
returnerrors.New("not verified")
242
+
}
243
+
244
+
iferr:=verifyDNS(); err==nil {
245
+
returnnil
246
+
}
247
+
term.Infof("Configure a CNAME or ALIAS record for the domain name: %v", domain)
248
+
fmt.Printf(" %v -> %v\n", domain, strings.Join(targets, " or "))
249
+
term.Infof("Awaiting DNS record setup and propagation... This may take a while.")
term.Warnf("The DNS configuration for %v has been successfully verified. However, your local environment may still be using cached data, so it could take several minutes for the DNS changes to propagate on your system.", domain)
238
-
returnnil
239
-
}
240
-
iflocallyVerified {
241
-
returnnil
242
-
}
243
-
}
244
-
if!msgShown {
245
-
term.Infof("Please set up a CNAME record for %v", domain)
246
-
fmt.Printf(" %v CNAME or as an alias to [ %v ]\n", domain, strings.Join(targets, " or "))
247
-
term.Infof("Waiting for CNAME record setup and DNS propagation...")
0 commit comments