From b97aa0e43af9f6b474bb77dfae179ff4f5adc6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Fri, 26 Apr 2024 17:32:02 +0200 Subject: [PATCH] fix: remove polling dns and http Resolves #10 --- src/commands/deploy.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/deploy.mjs b/src/commands/deploy.mjs index b98129c..0d87a1c 100644 --- a/src/commands/deploy.mjs +++ b/src/commands/deploy.mjs @@ -158,10 +158,10 @@ export default defineCommand({ }) spinner.succeed(`Deployed ${colors.blue(linkedProject.slug)} to ${deployEnvColored}...`) // Check DNS & ready url for first deployment + consola.success(`Deployment is ready at ${colors.cyan(deployment.primaryUrl || deployment.url)}`) if (deployment.isFirstDeploy) { - await pollDns(deployment.url) + consola.info('As this is the first deployment, please note that domain propagation may take a few minutes.') } - await pollHttp(deployment.primaryUrl || deployment.url) process.exit(0) }, })