From 4199800e7b58d50372c4697ae29f0c7d632e7a18 Mon Sep 17 00:00:00 2001 From: Michael Kamprath Date: Thu, 1 Oct 2020 18:08:41 -0700 Subject: [PATCH] updated upcload deployment script timing --- CHANGELOG.md | 1 + deployment-scripts/upcloud-deploy.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71a0922..fca589d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. * Corrected a spelling error in the file path that the Docker image looks for the JSON configuration. * Adjusted the timing of the UpCloud deployment script to better handle timing variation in the cloud service. * Fixed a bug in the UpCloud deployment script that manifested when the configuration filepath has spaces in it. +* Changed `localhost` references to `127.0.0.1` to prevent IPv6 resolution. ## [0.3.1] ### Added diff --git a/deployment-scripts/upcloud-deploy.py b/deployment-scripts/upcloud-deploy.py index 8909f22..7aba149 100644 --- a/deployment-scripts/upcloud-deploy.py +++ b/deployment-scripts/upcloud-deploy.py @@ -164,6 +164,8 @@ def print_help(): ) # wait for the server to finish booting and installing docker +print('Waiting 8 minutes for server set up to complete ...') +time.sleep(60) print('Waiting 7 minutes for server set up to complete ...') time.sleep(60) print('Waiting 6 minutes for server set up to complete ...')