From b6237732255b762ba4ad43e3011f359dacabceba Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Thu, 11 Apr 2019 15:25:36 -0700 Subject: [PATCH 1/2] update version --- version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version/version.go b/version/version.go index 0a4361ff4..fb15ee88a 100644 --- a/version/version.go +++ b/version/version.go @@ -9,12 +9,12 @@ import ( var GitCommit string // The main version number that is being run at the moment. -const Version = "1.4.0" +const Version = "1.4.1" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. -const VersionPrerelease = "" +const VersionPrerelease = "dev" func FormattedVersion() string { var versionString bytes.Buffer From 32b68de4dbc527ff99bd3c50f64baa5517741e5c Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Thu, 11 Apr 2019 15:26:16 -0700 Subject: [PATCH 2/2] clarify pause before connecting code --- website/source/docs/templates/communicator.html.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/website/source/docs/templates/communicator.html.md b/website/source/docs/templates/communicator.html.md index 42a4c2e94..2bd611b04 100644 --- a/website/source/docs/templates/communicator.html.md +++ b/website/source/docs/templates/communicator.html.md @@ -213,7 +213,8 @@ If you end up in this situation, you can use the template option "pause_before_connecting": "10m" } -In this example, Packer will wait 10 minutes before attempting to connect to -the guest. +In this example, Packer will check whether it can connect, as normal. But once +a connection attempt is successful, it will disconnect and then wait 10 minutes +before connecting to the guest and beginning provisioning.